diff options
| author | Nate Begeman <natebegeman@mac.com> | 2008-02-04 21:44:06 +0000 |
|---|---|---|
| committer | Nate Begeman <natebegeman@mac.com> | 2008-02-04 21:44:06 +0000 |
| commit | ef14d5f926eb22a90b129136cb9ff3fd0573093f (patch) | |
| tree | dda6e886dee4c819ed125fc07ea1a98ffbf9b317 /llvm | |
| parent | b1e5bcb7190262105a73c22b101b8535dd11b249 (diff) | |
| download | bcm5719-llvm-ef14d5f926eb22a90b129136cb9ff3fd0573093f.tar.gz bcm5719-llvm-ef14d5f926eb22a90b129136cb9ff3fd0573093f.zip | |
Eliminate some redundant code.
llvm-svn: 46720
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/ARM/ARMISelLowering.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/llvm/lib/Target/ARM/ARMISelLowering.cpp b/llvm/lib/Target/ARM/ARMISelLowering.cpp index dfe3bec9a58..02f53cc59ab 100644 --- a/llvm/lib/Target/ARM/ARMISelLowering.cpp +++ b/llvm/lib/Target/ARM/ARMISelLowering.cpp @@ -203,7 +203,7 @@ ARMTargetLowering::ARMTargetLowering(TargetMachine &TM) setOperationAction(ISD::MEMMOVE , MVT::Other, Expand); // Use the default implementation. - setOperationAction(ISD::VASTART , MVT::Other, Expand); + setOperationAction(ISD::VASTART , MVT::Other, Custom); setOperationAction(ISD::VAARG , MVT::Other, Expand); setOperationAction(ISD::VACOPY , MVT::Other, Expand); setOperationAction(ISD::VAEND , MVT::Other, Expand); @@ -240,12 +240,6 @@ ARMTargetLowering::ARMTargetLowering(TargetMachine &TM) setOperationAction(ISD::BR_CC , MVT::f64, Custom); setOperationAction(ISD::BR_JT , MVT::Other, Custom); - setOperationAction(ISD::VASTART, MVT::Other, Custom); - setOperationAction(ISD::VACOPY, MVT::Other, Expand); - setOperationAction(ISD::VAEND, MVT::Other, Expand); - setOperationAction(ISD::STACKSAVE, MVT::Other, Expand); - setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand); - // FP Constants can't be immediates. setOperationAction(ISD::ConstantFP, MVT::f64, Expand); setOperationAction(ISD::ConstantFP, MVT::f32, Expand); |

