summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/lsa.ll
diff options
context:
space:
mode:
authorMatt Arsenault <Matthew.Arsenault@amd.com>2017-04-10 20:18:21 +0000
committerMatt Arsenault <Matthew.Arsenault@amd.com>2017-04-10 20:18:21 +0000
commitbdbe8280f25339054c5314e87e4ddfa844c71014 (patch)
tree46125a2d1740e7c041ad98f47ba7a6954f35b73d /test/CodeGen/PowerPC/lsa.ll
parenta8b5a980c8179a1495423f56d8add29ee0112d21 (diff)
Add address space mangling to lifetime intrinsics
In preparation for allowing allocas to have non-0 addrspace. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@299876 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/lsa.ll')
-rw-r--r--test/CodeGen/PowerPC/lsa.ll16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/CodeGen/PowerPC/lsa.ll b/test/CodeGen/PowerPC/lsa.ll
index dc74b9dbca2..d0ebd473133 100644
--- a/test/CodeGen/PowerPC/lsa.ll
+++ b/test/CodeGen/PowerPC/lsa.ll
@@ -8,11 +8,11 @@ entry:
%w = alloca [8200 x i32], align 4
%q = alloca [8200 x i32], align 4
%0 = bitcast [8200 x i32]* %v to i8*
- call void @llvm.lifetime.start(i64 32800, i8* %0) #0
+ call void @llvm.lifetime.start.p0i8(i64 32800, i8* %0) #0
%1 = bitcast [8200 x i32]* %w to i8*
- call void @llvm.lifetime.start(i64 32800, i8* %1) #0
+ call void @llvm.lifetime.start.p0i8(i64 32800, i8* %1) #0
%2 = bitcast [8200 x i32]* %q to i8*
- call void @llvm.lifetime.start(i64 32800, i8* %2) #0
+ call void @llvm.lifetime.start.p0i8(i64 32800, i8* %2) #0
%arraydecay = getelementptr inbounds [8200 x i32], [8200 x i32]* %q, i64 0, i64 0
%arraydecay1 = getelementptr inbounds [8200 x i32], [8200 x i32]* %v, i64 0, i64 0
%arraydecay2 = getelementptr inbounds [8200 x i32], [8200 x i32]* %w, i64 0, i64 0
@@ -28,16 +28,16 @@ entry:
; CHECK: blr
%add = add nsw i32 %4, %3
- call void @llvm.lifetime.end(i64 32800, i8* %2) #0
- call void @llvm.lifetime.end(i64 32800, i8* %1) #0
- call void @llvm.lifetime.end(i64 32800, i8* %0) #0
+ call void @llvm.lifetime.end.p0i8(i64 32800, i8* %2) #0
+ call void @llvm.lifetime.end.p0i8(i64 32800, i8* %1) #0
+ call void @llvm.lifetime.end.p0i8(i64 32800, i8* %0) #0
ret i32 %add
}
-declare void @llvm.lifetime.start(i64, i8* nocapture) #0
+declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) #0
declare void @bar(i32*, i32*, i32*)
-declare void @llvm.lifetime.end(i64, i8* nocapture) #0
+declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) #0
attributes #0 = { nounwind }