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
/
TemplateCtor.cpp
blob
9a59194ac3f4d33ce6d162e4ca18e5357c7ac9b1
1
class
Foo
{
// CHECK: class Bar {
2
public
:
3
template
<
typename T
>
4
Foo
();
// CHECK: Bar();
5
6
template
<
typename T
>
7
Foo
(
Foo
&);
// CHECK: Bar(Bar &);
8
};
9
10
// RUN: clang-rename -offset=6 -new-name=Bar %s -- | sed 's,//.*,,' | FileCheck %s