blob: 02872f6958bcbf6ae3d1d18f954c96cb94e4e750 [file] [log] [blame]
Tanya Lattner003eae52008-03-10 07:21:50 +00001; RUN: llvm-as < %s -f -o %t.bc
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002; RUN: lli %t.bc > /dev/null
3
Tanya Lattner003eae52008-03-10 07:21:50 +00004define i32 @bar(i8* %X) {
5 ; pointer should be 4 byte aligned!
6 %P = alloca double ; <double*> [#uses=1]
7 %R = ptrtoint double* %P to i32 ; <i32> [#uses=1]
8 %A = and i32 %R, 3 ; <i32> [#uses=1]
9 ret i32 %A
Dan Gohmanf17a25c2007-07-18 16:29:46 +000010}
11
Tanya Lattner003eae52008-03-10 07:21:50 +000012define i32 @main() {
13 %SP = alloca i8 ; <i8*> [#uses=1]
14 %X = add i32 0, 0 ; <i32> [#uses=1]
15 alloca i8, i32 %X ; <i8*>:1 [#uses=0]
16 call i32 @bar( i8* %SP ) ; <i32>:2 [#uses=1]
17 ret i32 %2
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018}