@@ -39,15 +39,6 @@ EnablePEVectorSpills("ppc-enable-pe-vector-spills",
39
39
cl::desc (" Enable spills in prologue to vector registers." ),
40
40
cl::init(false ), cl::Hidden);
41
41
42
- // / VRRegNo - Map from a numbered VR register to its enum value.
43
- // /
44
- static const MCPhysReg VRRegNo[] = {
45
- PPC::V0 , PPC::V1 , PPC::V2 , PPC::V3 , PPC::V4 , PPC::V5 , PPC::V6 , PPC::V7 ,
46
- PPC::V8 , PPC::V9 , PPC::V10, PPC::V11, PPC::V12, PPC::V13, PPC::V14, PPC::V15,
47
- PPC::V16, PPC::V17, PPC::V18, PPC::V19, PPC::V20, PPC::V21, PPC::V22, PPC::V23,
48
- PPC::V24, PPC::V25, PPC::V26, PPC::V27, PPC::V28, PPC::V29, PPC::V30, PPC::V31
49
- };
50
-
51
42
static unsigned computeReturnSaveOffset (const PPCSubtarget &STI) {
52
43
if (STI.isAIXABI ())
53
44
return STI.isPPC64 () ? 16 : 8 ;
@@ -629,9 +620,8 @@ void PPCFrameLowering::emitPrologue(MachineFunction &MF,
629
620
bool isPPC64 = Subtarget.isPPC64 ();
630
621
// Get the ABI.
631
622
bool isSVR4ABI = Subtarget.isSVR4ABI ();
632
- bool isAIXABI = Subtarget.isAIXABI ();
633
623
bool isELFv2ABI = Subtarget.isELFv2ABI ();
634
- assert ((isSVR4ABI || isAIXABI) && " Unsupported PPC ABI." );
624
+ assert ((isSVR4ABI || Subtarget. isAIXABI () ) && " Unsupported PPC ABI." );
635
625
636
626
// Work out frame sizes.
637
627
unsigned FrameSize = determineFrameLayoutAndUpdate (MF);
0 commit comments