mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 01:46:41 +00:00

The core engine of clang-rename will be used for local and global renames in the new refactoring engine, as mentioned in http://lists.llvm.org/pipermail/cfe-dev/2017-June/054286.html. The clang-rename tool is still supported but might get deprecated in the future. Differential Revision: https://reviews.llvm.org/D34696 llvm-svn: 306840
11 lines
316 B
C++
11 lines
316 B
C++
#include "Inputs/HeaderWithSymbol.h"
|
|
|
|
int main() {
|
|
return 0; // CHECK: {{^ return 0;}}
|
|
}
|
|
|
|
// Test 1.
|
|
// The file IncludeHeaderWithSymbol.cpp doesn't contain the symbol Foo
|
|
// and is expected to be written to stdout without modifications
|
|
// RUN: clang-rename -qualified-name=Foo -new-name=Bar %s -- | FileCheck %s
|