1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Testcase for miscompilation

llvm-svn: 33947
This commit is contained in:
Chris Lattner 2007-02-06 02:22:37 +00:00
parent 775422640b
commit a4cd209aa1

View File

@ -0,0 +1,7 @@
; RUN: llvm-as < %s | opt -constprop | llvm-dis | grep 1065353216
define i32 @test() {
%A = bitcast float 1.000000e+00 to i32 ; <i32> [#uses=1]
ret i32 %A
}