diff options
Diffstat (limited to 'test/CodeGen/X86/fast-isel.ll')
-rw-r--r-- | test/CodeGen/X86/fast-isel.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/fast-isel.ll b/test/CodeGen/X86/fast-isel.ll index 36183e48c2998..375814c8afcd0 100644 --- a/test/CodeGen/X86/fast-isel.ll +++ b/test/CodeGen/X86/fast-isel.ll @@ -107,12 +107,12 @@ define void @crash_test1() nounwind ssp { ret void } -declare void @llvm.lifetime.start(i64, i8* nocapture) nounwind +declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) nounwind define i64* @life() nounwind { %a1 = alloca i64*, align 8 %a2 = bitcast i64** %a1 to i8* - call void @llvm.lifetime.start(i64 -1, i8* %a2) nounwind + call void @llvm.lifetime.start.p0i8(i64 -1, i8* %a2) nounwind %a3 = load i64*, i64** %a1, align 8 ret i64* %a3 } |