Displaying 1 result from an estimated 1 matches for "emitinststor".
Did you mean:
emitinststore
2014 Jun 08
2
[LLVMdev] [llvm] r210424 - Revert "Do materialize for floating point"
...ipsFastISel.cpp (original)
> +++ llvm/trunk/lib/Target/Mips/MipsFastISel.cpp Sun Jun 8 04:13:42 2014
> @@ -167,14 +167,9 @@ bool MipsFastISel::EmitStore(MVT VT, uns
> //
> // more cases will be handled here in following patches.
> //
> - if (VT == MVT::i32)
> - EmitInstStore(Mips::SW, SrcReg, Addr.Base.Reg, Addr.Offset);
> - else if (VT == MVT::f32)
> - EmitInstStore(Mips::SWC1, SrcReg, Addr.Base.Reg, Addr.Offset);
> - else if (VT == MVT::f64)
> - EmitInstStore(Mips::SDC1, SrcReg, Addr.Base.Reg, Addr.Offset);
> - else
> + if (VT != MVT::i32...