diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-08-25 22:20:39 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-08-25 22:20:39 +0000 |
commit | 993d00682c245c5d33d03fecd71d2c774df2e9d3 (patch) | |
tree | 5f3c05de53a6b8c0e6b70206e11e288737dec2b1 /lib/CodeGen/SelectionDAG/FastISel.cpp | |
parent | c1ad6c5ea173faa0024442fb3ae7a1b781bebe3d (diff) | |
download | external_llvm-993d00682c245c5d33d03fecd71d2c774df2e9d3.zip external_llvm-993d00682c245c5d33d03fecd71d2c774df2e9d3.tar.gz external_llvm-993d00682c245c5d33d03fecd71d2c774df2e9d3.tar.bz2 |
Unbreak build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55342 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/FastISel.cpp')
-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 +} |