mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
We don't have any FP extloads
llvm-svn: 76018
This commit is contained in:
parent
643215b0d7
commit
32c9954322
@ -65,6 +65,13 @@ SystemZTargetLowering::SystemZTargetLowering(SystemZTargetMachine &tm) :
|
||||
setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
|
||||
setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
|
||||
|
||||
setLoadExtAction(ISD::SEXTLOAD, MVT::f32, Promote);
|
||||
setLoadExtAction(ISD::ZEXTLOAD, MVT::f32, Promote);
|
||||
setLoadExtAction(ISD::EXTLOAD, MVT::f32, Promote);
|
||||
setLoadExtAction(ISD::SEXTLOAD, MVT::f64, Promote);
|
||||
setLoadExtAction(ISD::ZEXTLOAD, MVT::f64, Promote);
|
||||
setLoadExtAction(ISD::EXTLOAD, MVT::f64, Promote);
|
||||
|
||||
setStackPointerRegisterToSaveRestore(SystemZ::R15D);
|
||||
setSchedulingPreference(SchedulingForLatency);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user