diff options
Diffstat (limited to 'test/Transforms/InstCombine/objsize.ll')
-rw-r--r-- | test/Transforms/InstCombine/objsize.ll | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/Transforms/InstCombine/objsize.ll b/test/Transforms/InstCombine/objsize.ll index 28ceb68b49..6b5c0f56eb 100644 --- a/test/Transforms/InstCombine/objsize.ll +++ b/test/Transforms/InstCombine/objsize.ll @@ -158,3 +158,23 @@ define i32 @test7() { ret i32 %objsize } +declare noalias i8* @calloc(i32, i32) nounwind + +define i32 @test8() { +; CHECK: @test8 + %alloc = call noalias i8* @calloc(i32 5, i32 7) nounwind + %gep = getelementptr inbounds i8* %alloc, i32 5 + %objsize = call i32 @llvm.objectsize.i32(i8* %gep, i1 false) nounwind readonly +; CHECK: ret i32 30 + ret i32 %objsize +} + +; test for overflow in calloc +define i32 @test9() { +; CHECK: @test9 + %alloc = call noalias i8* @calloc(i32 100000000, i32 100000000) nounwind + %gep = getelementptr inbounds i8* %alloc, i32 2 + %objsize = call i32 @llvm.objectsize.i32(i8* %gep, i1 true) nounwind readonly +; CHECK: ret i32 0 + ret i32 %objsize +} |