repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
clang-rename
/
ClassFindByName.cpp
blob
4430891ec4b1e049ed83717474b658048e94d708
1
class
Foo
{
// CHECK: class Bar {
2
};
3
4
int
main
() {
5
Foo
*
Pointer
=
0
;
// CHECK: Bar *Pointer = 0;
6
return
0
;
7
}
8
9
// Test 1.
10
// RUN: clang-rename -qualified-name=Foo -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s