make fp div trick dependend on flag
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20967 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/Alpha/AlphaISelPattern.cpp b/lib/Target/Alpha/AlphaISelPattern.cpp
index d7df75b..ba5178b 100644
--- a/lib/Target/Alpha/AlphaISelPattern.cpp
+++ b/lib/Target/Alpha/AlphaISelPattern.cpp
@@ -37,7 +37,7 @@
cl::desc("Use the FP div instruction for integer div when possible"),
cl::Hidden);
cl::opt<bool> EnableAlpha("enable-alpha-ftoi",
- cl::desc("Enablue use of ftoi* and itof* instructions (ev6 and higher)"),
+ cl::desc("Enable use of ftoi* and itof* instructions (ev6 and higher)"),
cl::Hidden);
}
@@ -1061,7 +1061,7 @@
case ISD::SIGN_EXTEND_INREG:
{
//do SDIV opt for all levels of ints
- if (N.getOperand(0).getOpcode() == ISD::SDIV)
+ if (EnableAlphaIDIV && N.getOperand(0).getOpcode() == ISD::SDIV)
{
Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
Tmp2 = SelectExpr(N.getOperand(0).getOperand(1));