diff options
Diffstat (limited to 'clang/test/CodeGenCXX/thiscall-struct-return.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/thiscall-struct-return.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/thiscall-struct-return.cpp b/clang/test/CodeGenCXX/thiscall-struct-return.cpp index 90c160457be..a6be5aa494e 100644 --- a/clang/test/CodeGenCXX/thiscall-struct-return.cpp +++ b/clang/test/CodeGenCXX/thiscall-struct-return.cpp @@ -31,7 +31,7 @@ public: // CHECK-LABEL: define void @_Z4testv() void test( void ) { -// CHECK: call void @_ZN1CC1Ev(%class.C* noalias [[C:%.+]]) +// CHECK: call void @_ZN1CC1Ev(%class.C* [[C:%.+]]) C c; // CHECK: call x86_thiscallcc void @_ZNK1C5SmallEv(%struct.S* sret %{{.+}}, %class.C* [[C]]) |