diff options
author | Owen Anderson <resistor@mac.com> | 2008-08-27 18:58:30 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-08-27 18:58:30 +0000 |
commit | 90609850b24f6f5435bf640f64aeefff002874d8 (patch) | |
tree | f9fe8273b5a385fe2efec02830818a8a3881b40a /llvm/lib/CodeGen | |
parent | d01789be23c9ccf9a9fe269dd03f4f841687c385 (diff) | |
download | bcm5719-llvm-90609850b24f6f5435bf640f64aeefff002874d8.tar.gz bcm5719-llvm-90609850b24f6f5435bf640f64aeefff002874d8.zip |
Use TargetLowering to get the types in fast isel, which handles pointer types correctly for our purposes.
llvm-svn: 55428
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index 6e2bd4b7f57..7d40405bd53 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -197,8 +197,8 @@ bool FastISel::SelectGetElementPtr(Instruction *I, bool FastISel::SelectCast(Instruction *I, ISD::NodeType Opcode, DenseMap<const Value*, unsigned> &ValueMap) { - MVT SrcVT = MVT::getMVT(I->getOperand(0)->getType()); - MVT DstVT = MVT::getMVT(I->getType()); + MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); + MVT DstVT = TLI.getValueType(I->getType()); if (SrcVT == MVT::Other || !SrcVT.isSimple() || DstVT == MVT::Other || !DstVT.isSimple() || @@ -231,8 +231,8 @@ bool FastISel::SelectBitCast(Instruction *I, } // Bitcasts of other values become reg-reg copies or BIT_CONVERT operators. - MVT SrcVT = MVT::getMVT(I->getOperand(0)->getType()); - MVT DstVT = MVT::getMVT(I->getType()); + MVT SrcVT = TLI.getValueType(I->getOperand(0)->getType()); + MVT DstVT = TLI.getValueType(I->getType()); if (SrcVT == MVT::Other || !SrcVT.isSimple() || DstVT == MVT::Other || !DstVT.isSimple() || |