[llvm-commits] [llvm] r55342 - /llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp

Evan Cheng evan.cheng at apple.com
Mon Aug 25 15:20:39 PDT 2008


Author: evancheng
Date: Mon Aug 25 17:20:39 2008
New Revision: 55342

URL: http://llvm.org/viewvc/llvm-project?rev=55342&view=rev
Log:
Unbreak build.

Modified:
    llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp

Modified: llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp?rev=55342&r1=55341&r2=55342&view=diff

==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp Mon Aug 25 17:20:39 2008
@@ -246,7 +246,7 @@
           return I;
         if (!TLI.isConvertLegal(SrcVT, DstVT))
           // Illegal conversion.  Halt "fast" selection and bail.
-          return I:
+          return I;
         
         // Otherwise, insert a register-to-register copy.
         TargetRegisterClass* SrcClass = TLI.getRegClassFor(SrcVT);
@@ -396,4 +396,4 @@
   
   BuildMI(MBB, II, ResultReg).addImm(Imm);
   return ResultReg;
-}
\ No newline at end of file
+}





More information about the llvm-commits mailing list