Add this test back.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66838 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2009-03-12 23:01:35 +00:00
parent bcf8ea9554
commit 379e15e988

@ -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
}