summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/temporary-lifetime-exceptions.cpp
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2017-04-10 20:18:45 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2017-04-10 20:18:45 +0000
commitd972949b10ef0b10fd73d5b153084217c535bb15 (patch)
treebfcec96b8adbda89913c2e90d0b0277da94c1138 /clang/test/CodeGen/temporary-lifetime-exceptions.cpp
parentf10061ec708ef787398649f3eb073c6ca3acd73d (diff)
downloadbcm5719-llvm-d972949b10ef0b10fd73d5b153084217c535bb15.tar.gz
bcm5719-llvm-d972949b10ef0b10fd73d5b153084217c535bb15.zip
Update for lifetime intrinsic signature change
llvm-svn: 299877
Diffstat (limited to 'clang/test/CodeGen/temporary-lifetime-exceptions.cpp')
-rw-r--r--clang/test/CodeGen/temporary-lifetime-exceptions.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/CodeGen/temporary-lifetime-exceptions.cpp b/clang/test/CodeGen/temporary-lifetime-exceptions.cpp
index f435560c975..1dc1c40dc6b 100644
--- a/clang/test/CodeGen/temporary-lifetime-exceptions.cpp
+++ b/clang/test/CodeGen/temporary-lifetime-exceptions.cpp
@@ -9,16 +9,16 @@ A Baz(const A&);
void Test1() {
// CHECK-LABEL: @_Z5Test1v(
// CHECK: getelementptr
- // CHECK-NEXT: call void @llvm.lifetime.start(i64 1, i8* nonnull [[TMP:[^ ]+]])
+ // CHECK-NEXT: call void @llvm.lifetime.start.p0i8(i64 1, i8* nonnull [[TMP:[^ ]+]])
// CHECK-NEXT: getelementptr
- // CHECK-NEXT: call void @llvm.lifetime.start(i64 1, i8* nonnull [[TMP1:[^ ]+]])
+ // CHECK-NEXT: call void @llvm.lifetime.start.p0i8(i64 1, i8* nonnull [[TMP1:[^ ]+]])
// Normal exit
- // CHECK: call void @llvm.lifetime.end(i64 1, i8* nonnull [[TMP1]])
- // CHECK-NEXT: call void @llvm.lifetime.end(i64 1, i8* nonnull [[TMP]])
+ // CHECK: call void @llvm.lifetime.end.p0i8(i64 1, i8* nonnull [[TMP1]])
+ // CHECK-NEXT: call void @llvm.lifetime.end.p0i8(i64 1, i8* nonnull [[TMP]])
// Exception exit
- // CHECK: call void @llvm.lifetime.end(i64 1, i8* nonnull [[TMP1]])
- // CHECK-NEXT: call void @llvm.lifetime.end(i64 1, i8* nonnull [[TMP]])
+ // CHECK: call void @llvm.lifetime.end.p0i8(i64 1, i8* nonnull [[TMP1]])
+ // CHECK-NEXT: call void @llvm.lifetime.end.p0i8(i64 1, i8* nonnull [[TMP]])
Baz(Baz(A()));
}
OpenPOWER on IntegriCloud