mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
We don't have any FP extloads
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76018 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
10c086cd77
commit
23eff5c75a
@ -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