diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-04-29 20:49:22 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2015-04-29 20:49:22 +0000 |
commit | 0ae6b2b83918e217d71fa4d5157c11e6551b45d5 (patch) | |
tree | a77a5c4bfcb441e31d44cf560cf9df57c10c709d /clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp | |
parent | 8fd97a3aded4974cefbd5b315fe7393cdad48d32 (diff) | |
download | bcm5719-llvm-0ae6b2b83918e217d71fa4d5157c11e6551b45d5.tar.gz bcm5719-llvm-0ae6b2b83918e217d71fa4d5157c11e6551b45d5.zip |
Stop assuming a 64-bit target here.
llvm-svn: 236155
Diffstat (limited to 'clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp b/clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp index 4bea685dbf2..516aab4bbca 100644 --- a/clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp +++ b/clang/test/CodeGenCXX/copy-constructor-synthesis-2.cpp @@ -10,15 +10,15 @@ extern PR23373 pr23373_a; PR23373 pr23373_b(pr23373_a); // CHECK-LABEL: define {{.*}} @__cxx_global_var_init( -// CHECK: call void @llvm.memcpy.p0i8.p0i8.i64({{.*}} @pr23373_b{{.*}}, {{.*}} @pr23373_a{{.*}}, i64 4, i32 4, i1 false) +// CHECK: call void @llvm.memcpy.p0i8.p0i8.i64({{.*}} @pr23373_b{{.*}}, {{.*}} @pr23373_a{{.*}}, i{{32|64}} 4, i32 4, i1 false) PR23373 pr23373_f() { return pr23373_a; } // CHECK-LABEL: define {{.*}} @_Z9pr23373_fv( -// CHECK: call void @llvm.memcpy.p0i8.p0i8.i64({{.*}}, i64 4, i32 4, i1 false) +// CHECK: call void @llvm.memcpy.p0i8.p0i8.i64({{.*}}, i{{32|64}} 4, i32 4, i1 false) void pr23373_g(PR23373 &a, PR23373 &b) { a = b; } // CHECK-LABEL: define {{.*}} @_Z9pr23373_g -// CHECK: call void @llvm.memcpy.p0i8.p0i8.i64({{.*}}, i64 4, i32 4, i1 false) +// CHECK: call void @llvm.memcpy.p0i8.p0i8.i64({{.*}}, i{{32|64}} 4, i32 4, i1 false) struct A { virtual void a(); }; A x(A& y) { return y; } |