blob: 6544e7d735a44d1bef7b8cd57f4f32effc6cee0a [file] [log] [blame]
Andrew Lenharth731f2d52006-09-19 18:23:39 +00001; Tests to make sure elimination of casts is working correctly
Dan Gohman18800922009-09-11 18:01:28 +00002; RUN: opt < %s -instcombine -S | FileCheck %s
Andrew Lenharth731f2d52006-09-19 18:23:39 +00003
Tanya Lattneraa6f5c92008-03-09 08:16:40 +00004target datalayout = "p:32:32"
Andrew Lenharth731f2d52006-09-19 18:23:39 +00005
Dan Gohman33a3fd02009-07-20 17:43:30 +00006; This shouldn't convert to getelementptr because the relationship
7; between the arithmetic and the layout of allocated memory is
8; entirely unknown.
9; CHECK: @test1
10; CHECK: ptrtoint
11; CHECK: add
12; CHECK: inttoptr
Tanya Lattneraa6f5c92008-03-09 08:16:40 +000013define i8* @test1(i8* %t) {
14 %tmpc = ptrtoint i8* %t to i32 ; <i32> [#uses=1]
15 %tmpa = add i32 %tmpc, 32 ; <i32> [#uses=1]
16 %tv = inttoptr i32 %tmpa to i8* ; <i8*> [#uses=1]
17 ret i8* %tv
Andrew Lenharth731f2d52006-09-19 18:23:39 +000018}
19
Dan Gohman33a3fd02009-07-20 17:43:30 +000020; These casts should be folded away.
21; CHECK: @test2
22; CHECK: icmp eq i8* %a, %b
Tanya Lattneraa6f5c92008-03-09 08:16:40 +000023define i1 @test2(i8* %a, i8* %b) {
24 %tmpa = ptrtoint i8* %a to i32 ; <i32> [#uses=1]
25 %tmpb = ptrtoint i8* %b to i32 ; <i32> [#uses=1]
26 %r = icmp eq i32 %tmpa, %tmpb ; <i1> [#uses=1]
27 ret i1 %r
Andrew Lenharthf7a53322007-02-22 15:17:45 +000028}
Tanya Lattneraa6f5c92008-03-09 08:16:40 +000029