diff options
Diffstat (limited to 'clang/test/CodeGenCXX/copy-constructor-synthesis.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/copy-constructor-synthesis.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/CodeGenCXX/copy-constructor-synthesis.cpp b/clang/test/CodeGenCXX/copy-constructor-synthesis.cpp index 37550c42193..47971afe61d 100644 --- a/clang/test/CodeGenCXX/copy-constructor-synthesis.cpp +++ b/clang/test/CodeGenCXX/copy-constructor-synthesis.cpp @@ -101,10 +101,10 @@ int main() { m1.pr(); } -// CHECK-LP64: .globl __ZN1XC1ERK1X -// CHECK-LP64: .weak_definition __ZN1XC1ERK1X -// CHECK-LP64: __ZN1XC1ERK1X: +// CHECK-LP64: .globl __ZN1XC1ERKS_ +// CHECK-LP64: .weak_definition __ZN1XC1ERKS_ +// CHECK-LP64: __ZN1XC1ERKS_: -// CHECK-LP32: .globl __ZN1XC1ERK1X -// CHECK-LP32: .weak_definition __ZN1XC1ERK1X -// CHECK-LP32: __ZN1XC1ERK1X: +// CHECK-LP32: .globl __ZN1XC1ERKS_ +// CHECK-LP32: .weak_definition __ZN1XC1ERKS_ +// CHECK-LP32: __ZN1XC1ERKS_: |