blob: a55d74df0d444b6bd3893625a00b1fafaff48e16 [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001; RUN: llvm-as %s -o %t.bc
Tanya Lattnere9789ef2004-11-06 23:32:43 +00002; RUN: lli %t.bc > /dev/null
3
Tanya Lattnerceca1942008-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
Chris Lattner12ba6fd2003-05-12 04:06:38 +000010}
11
Tanya Lattnerceca1942008-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
Chris Lattner12ba6fd2003-05-12 04:06:38 +000018}