In some rare cases, the register allocator can spill registers but end up not utilizi...
[llvm/msp430.git] / test / CodeGen / X86 / storetrunc-fp.ll
blob655cbd68b37adb4c9e36e7a68a3f06094c417b6b
1 ; RUN: llvm-as < %s | llc -march=x86 | not grep flds
3 define void @foo(x86_fp80 %a, x86_fp80 %b, float* %fp) {
4         %c = add x86_fp80 %a, %b
5         %d = fptrunc x86_fp80 %c to float
6         store float %d, float* %fp
7         ret void