xref: /llvm-project/llvm/test/Transforms/InstSimplify/ConstProp/2007-02-05-BitCast.ll (revision b280ee1dd7e9b36ae7aaa3953556e4b7a7f31a29)
1; RUN: opt < %s -passes=instsimplify -S | grep 1065353216
2
3define i32 @test() {
4        %A = bitcast float 1.000000e+00 to i32          ; <i32> [#uses=1]
5        ret i32 %A
6}
7
8