xref: /aosp_15_r20/external/llvm/test/Transforms/ConstProp/2007-02-05-BitCast.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: opt < %s -constprop -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