summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/tail-padding.cpp
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2019-06-21 17:41:20 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2019-06-21 17:41:20 +0000
commit5a701712c038db16c490a98e890abbcf0e5caac8 (patch)
tree9e0d951574b790fad6e54a86b17969bf9b1365e2 /clang/test/CodeGenCXX/tail-padding.cpp
parent0f21507b44784869232ad5dbb3605d8cb1c956d2 (diff)
downloadbcm5719-llvm-5a701712c038db16c490a98e890abbcf0e5caac8.tar.gz
bcm5719-llvm-5a701712c038db16c490a98e890abbcf0e5caac8.zip
Fix ARM buildbot.
llvm-svn: 364081
Diffstat (limited to 'clang/test/CodeGenCXX/tail-padding.cpp')
-rw-r--r--clang/test/CodeGenCXX/tail-padding.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CodeGenCXX/tail-padding.cpp b/clang/test/CodeGenCXX/tail-padding.cpp
index afb97a00da7..5b3b00e6d08 100644
--- a/clang/test/CodeGenCXX/tail-padding.cpp
+++ b/clang/test/CodeGenCXX/tail-padding.cpp
@@ -44,21 +44,21 @@ namespace NoUniqueAddr {
static_assert(sizeof(E) == sizeof(void*) + 8 + alignof(void*));
// CHECK: define {{.*}} @_ZN12NoUniqueAddr1CC1EOS0_
- // CHECK: call void @_ZN12NoUniqueAddr1AC2ERKS0_(
+ // CHECK: call {{.*}} @_ZN12NoUniqueAddr1AC2ERKS0_(
// CHECK: store i32 {{.*}} @_ZTVN12NoUniqueAddr1CE
// Copy the full size of B.
// CHECK: call void @llvm.memcpy.p0i8.p0i8.i64(i8* {{.*}}, i8* {{.*}}, i64 8, i1 false)
C f(C c) { return c; }
// CHECK: define {{.*}} @_ZN12NoUniqueAddr1DC1EOS0_
- // CHECK: call void @_ZN12NoUniqueAddr1AC2ERKS0_(
+ // CHECK: call {{.*}} @_ZN12NoUniqueAddr1AC2ERKS0_(
// CHECK: store i32 {{.*}} @_ZTVN12NoUniqueAddr1DE
// Copy just the data size of B, to avoid overwriting the A base class.
// CHECK: call void @llvm.memcpy.p0i8.p0i8.i64(i8* {{.*}}, i8* {{.*}}, i64 7, i1 false)
D f(D d) { return d; }
// CHECK: define {{.*}} @_ZN12NoUniqueAddr1EC1EOS0_
- // CHECK: call void @_ZN12NoUniqueAddr1AC2ERKS0_(
+ // CHECK: call {{.*}} @_ZN12NoUniqueAddr1AC2ERKS0_(
// CHECK: store i32 {{.*}} @_ZTVN12NoUniqueAddr1EE
// We can copy the full size of B here. (As it happens, we fold the copy of 'x' into
// this memcpy, so we're copying 8 bytes either way.)
@@ -71,7 +71,7 @@ namespace NoUniqueAddr {
};
// CHECK: define {{.*}} @_ZN12NoUniqueAddr1FC1ERKS0_
- // CHECK: call void @_ZN12NoUniqueAddr1AC2ERKS0_(
+ // CHECK: call {{.*}} @_ZN12NoUniqueAddr1AC2ERKS0_(
// CHECK: store i32 {{.*}} @_ZTVN12NoUniqueAddr1FE
// CHECK: call void @llvm.memcpy.p0i8.p0i8.i64(i8* {{.*}}, i8* {{.*}}, i64 7, i1 false)
F f(F x) { return x; }
OpenPOWER on IntegriCloud