Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:Foo

3 struct Foo {
4 Foo();
5 Foo(const Foo&);
10 operator const Foo&() const;
13 void f(Foo);
15 // CHECK-LABEL: define void @_Z1g3Foo(%struct.Foo* %foo)
16 void g(Foo foo) {
23 f(Foo());
26 f(foo);