Wrap long line.
authorChris Lattner <sabre@nondot.org>
Sat, 8 Jan 2005 06:59:50 +0000 (06:59 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 8 Jan 2005 06:59:50 +0000 (06:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19367 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelSimple.cpp

index 9de2ef2a3d1e3b04db8622b2dee332e0aa701e31..bf47cb6342a3864682575d51bd66f81ad5adb4a6 100644 (file)
@@ -1632,8 +1632,8 @@ void X86ISel::doCall(const ValueRecord &Ret, MachineInstr *CallMI,
         
       case cFP:
         if (ConstantFP *CFP = dyn_cast_or_null<ConstantFP>(Args[i].Val)) {
-          // Store constant FP values with integer instructions to avoid having to
-          // load the constants from the constant pool then do a store.
+          // Store constant FP values with integer instructions to avoid having
+          // to load the constants from the constant pool then do a store.
           if (CFP->getType() == Type::FloatTy) {
             union {
               unsigned I;