diff options
author | Owen Anderson <resistor@mac.com> | 2008-08-28 18:26:01 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-08-28 18:26:01 +0000 |
commit | c0bb68b98267c75168e6596d20610a8a8b3c0635 (patch) | |
tree | 1a86e5aa65b5792a8553b41662b091580bb3001a /lib/CodeGen/SelectionDAG/FastISel.cpp | |
parent | b5dbcb538b2ecfde2c94a1981301ac9beea3ea3c (diff) |
Hook up support for fast-isel of trunc instructions, using the newly working support for EXTRACT_SUBREG.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55482 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/FastISel.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp index 4dbfadcd16..9fa37b16c4 100644 --- a/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -366,6 +366,9 @@ FastISel::SelectInstructions(BasicBlock::iterator Begin, case Instruction::SExt: if (!SelectCast(I, ISD::SIGN_EXTEND, ValueMap)) return I; break; + case Instruction::Trunc: + if (!SelectCast(I, ISD::TRUNCATE, ValueMap)) return I; + break; case Instruction::SIToFP: if (!SelectCast(I, ISD::SINT_TO_FP, ValueMap)) return I; break; @@ -594,6 +597,6 @@ unsigned FastISel::FastEmitInst_extractsubreg(unsigned Op0, uint32_t Idx) { unsigned ResultReg = createResultReg(SRC); const TargetInstrDesc &II = TII.get(TargetInstrInfo::EXTRACT_SUBREG); - BuildMI(MBB, II, ResultReg).addReg(Op0); + BuildMI(MBB, II, ResultReg).addReg(Op0).addImm(Idx); return ResultReg; } |