Mercurial > hg > CbC > CbC_llvm
comparison test/Transforms/InstCombine/deadcode.ll @ 121:803732b1fca8
LLVM 5.0
author | kono |
---|---|
date | Fri, 27 Oct 2017 17:07:41 +0900 |
parents | 95c75e76d11b |
children |
comparison
equal
deleted
inserted
replaced
120:1172e4bd9c6f | 121:803732b1fca8 |
---|---|
20 ret i32* %tmp14 | 20 ret i32* %tmp14 |
21 } | 21 } |
22 | 22 |
23 declare i8* @llvm.stacksave() | 23 declare i8* @llvm.stacksave() |
24 | 24 |
25 declare void @llvm.lifetime.start(i64, i8*) | 25 declare void @llvm.lifetime.start.p0i8(i64, i8*) |
26 declare void @llvm.lifetime.end(i64, i8*) | 26 declare void @llvm.lifetime.end.p0i8(i64, i8*) |
27 | 27 |
28 define void @test3() { | 28 define void @test3() { |
29 call void @llvm.lifetime.start(i64 -1, i8* undef) | 29 call void @llvm.lifetime.start.p0i8(i64 -1, i8* undef) |
30 call void @llvm.lifetime.end(i64 -1, i8* undef) | 30 call void @llvm.lifetime.end.p0i8(i64 -1, i8* undef) |
31 ret void | 31 ret void |
32 } | 32 } |
33 | 33 |