We don't have any div at all - thus mark it as expensive

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70714 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Anton Korobeynikov 2009-05-03 13:03:14 +00:00
parent 8d7bb3998b
commit 1476d97037

View File

@ -44,6 +44,11 @@ MSP430TargetLowering::MSP430TargetLowering(MSP430TargetMachine &tm) :
// Compute derived properties from the register classes
computeRegisterProperties();
// Provide all sorts of operation actions
// Division is expensive
setIntDivIsCheap(false);
setOperationAction(ISD::RET, MVT::Other, Custom);
}