diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2011-01-25 19:10:24 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2011-01-25 19:10:24 +0000 |
commit | 0691a5c83246604a89654e0dfc25870e742035b4 (patch) | |
tree | 8b4608bfd4455eff554be6f03275a3817ed14ee9 /test/CodeGenCXX/implicit-copy-constructor.cpp | |
parent | 9f0f3cd94ac992bc6714b49ffe5272521ce12d77 (diff) |
Move unnamed_addr after the function arguments on Sabre's request.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@124210 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/implicit-copy-constructor.cpp')
-rw-r--r-- | test/CodeGenCXX/implicit-copy-constructor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenCXX/implicit-copy-constructor.cpp b/test/CodeGenCXX/implicit-copy-constructor.cpp index adc5ae5fb2..500860182e 100644 --- a/test/CodeGenCXX/implicit-copy-constructor.cpp +++ b/test/CodeGenCXX/implicit-copy-constructor.cpp @@ -40,7 +40,7 @@ void f(D d) { D d2(d); } -// CHECK: define linkonce_odr unnamed_addr void @_ZN1DC1ERS_ +// CHECK: define linkonce_odr void @_ZN1DC1ERS_(%struct.D* %this, %struct.D*) unnamed_addr // CHECK: call void @_ZN1AC1Ev // CHECK: call void @_ZN1CC2ERS_1A // CHECK: call void @_ZN1AD1Ev |