Remove code for setting the VEX L-bit as a function of operand size from the code...
[oota-llvm.git] / lib / Support / CommandLine.cpp
index e6fdf16a82de9a951f40875fd83ee1a38e508803..593315d1a72fa0fc9d64d4cd0fb3b990074f7dd3 100644 (file)
@@ -219,10 +219,10 @@ static Option *LookupNearestOption(StringRef Arg,
       if (!Best || Distance < BestDistance) {
         Best = O;
         BestDistance = Distance;
-       if (RHS.empty() || !PermitValue)
-         NearestString = OptionNames[i];
-       else
-         NearestString = std::string(OptionNames[i]) + "=" + RHS.str();
+        if (RHS.empty() || !PermitValue)
+          NearestString = OptionNames[i];
+        else
+          NearestString = std::string(OptionNames[i]) + "=" + RHS.str();
       }
     }
   }