blob: b99149b687fc3d0e439b253ad7befc8f8a4535f0 [file] [log] [blame]
Evan Cheng379e15e2009-03-12 23:01:35 +00001; RUN: llvm-as < %s | llc -march=x86 | grep call | not grep {*}
2; RUN: llvm-as < %s | llc -march=x86 | grep call | grep 12345678
3; RUN: llvm-as < %s | llc -march=x86-64 | grep call | grep 12345678
4; PR3666
5; PR3773
6
7define i32 @main() nounwind {
8entry:
9 %0 = call i32 inttoptr (i32 12345678 to i32 (i32)*)(i32 0) nounwind ; <i32> [#uses=1]
10 ret i32 %0
11}