blob: df150373b7273d93fe28bedce93ac72ffe5f2dc0 [file] [log] [blame]
Daniel Dunbar46a27162010-11-13 00:28:01 +00001; RUN: lli %s > /dev/null
Andrew Trick0005cc72011-08-26 23:39:30 +00002; XFAIL: arm
Tanya Lattnere9789ef2004-11-06 23:32:43 +00003
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}