diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/SelectionDAG/FastISel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index c48a2f2..53e87d1 100644 --- a/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -246,7 +246,7 @@ FastISel::SelectInstructions(BasicBlock::iterator Begin, 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 @@ unsigned FastISel::FastEmitInst_i(unsigned MachineInstOpcode, BuildMI(MBB, II, ResultReg).addImm(Imm); return ResultReg; -}
\ No newline at end of file +} |