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
[RISCV][FMV] Support target_clones (#85786)
[llvm-project.git]
/
clang
/
test
/
clang-rename
/
FunctionWithClassFindByName.cpp
blob
2cae09a1c244821065063a641707d7fd66ce08ef
1
void
foo
() {
2
}
3
4
class
Foo
{
// CHECK: class Bar
5
};
6
7
int
main
() {
8
Foo
*
Pointer
=
0
;
// CHECK: Bar *Pointer = 0;
9
return
0
;
10
}
11
12
// RUN: clang-rename -qualified-name=Foo -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s