[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / llvm / test / CodeGen / X86 / store-fp-constant.ll
blobb0124dd5539244353e1ff58f3fe0e0b310502099
1 ; RUN: llc < %s -mtriple=i686-- | FileCheck %s
3 ; CHECK-NOT: rodata
4 ; CHECK-NOT: literal
7 ; Check that no FP constants in this testcase ends up in the 
8 ; constant pool.
10 @G = external dso_local global float              ; <ptr> [#uses=1]
12 declare void @extfloat(float)
14 declare void @extdouble(double)
16 define void @testfloatstore() {
17         call void @extfloat( float 0x40934999A0000000 )
18         call void @extdouble( double 0x409349A631F8A090 )
19         store float 0x402A064C20000000, ptr @G
20         ret void