1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Add this test back.

llvm-svn: 66838
This commit is contained in:
Evan Cheng 2009-03-12 23:01:35 +00:00
parent 0401add555
commit 27be5272b4

View File

@ -0,0 +1,11 @@
; RUN: llvm-as < %s | llc -march=x86 | grep call | not grep {*}
; RUN: llvm-as < %s | llc -march=x86 | grep call | grep 12345678
; RUN: llvm-as < %s | llc -march=x86-64 | grep call | grep 12345678
; PR3666
; PR3773
define i32 @main() nounwind {
entry:
%0 = call i32 inttoptr (i32 12345678 to i32 (i32)*)(i32 0) nounwind ; <i32> [#uses=1]
ret i32 %0
}