23 lines · plain
1; RUN: llc < %s -mtriple=i686-- | FileCheck %s2 3; CHECK-NOT: rodata4; CHECK-NOT: literal5 6;7; Check that no FP constants in this testcase ends up in the 8; constant pool.9 10@G = external dso_local global float ; <ptr> [#uses=1]11 12declare void @extfloat(float)13 14declare void @extdouble(double)15 16define void @testfloatstore() {17 call void @extfloat( float 0x40934999A0000000 )18 call void @extdouble( double 0x409349A631F8A090 )19 store float 0x402A064C20000000, ptr @G20 ret void21}22 23