make fp div trick dependend on flag
authorAndrew Lenharth <andrewl@lenharth.org>
Thu, 31 Mar 2005 22:02:25 +0000 (22:02 +0000)
committerAndrew Lenharth <andrewl@lenharth.org>
Thu, 31 Mar 2005 22:02:25 +0000 (22:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20967 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Alpha/AlphaISelPattern.cpp

index d7df75bde1195563e6df2ba9ff084b257e811a9e..ba5178b621287ad089168de7fc039ed4d5400ff8 100644 (file)
@@ -37,7 +37,7 @@ namespace llvm {
                              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 @@ unsigned ISel::SelectExpr(SDOperand N) {
   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));