diff options
author | Patrik Hagglund <patrik.h.hagglund@ericsson.com> | 2012-12-19 12:23:01 +0000 |
---|---|---|
committer | Patrik Hagglund <patrik.h.hagglund@ericsson.com> | 2012-12-19 12:23:01 +0000 |
commit | 4e0f828686322bd9733676c9863ebd95589f2d03 (patch) | |
tree | fdcb4d71f1dd914e0d15c04fd4b5a7c2d44a4631 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | |
parent | e09cac9a6754be488a493568527f503c01a5e0f7 (diff) | |
download | bcm5719-llvm-4e0f828686322bd9733676c9863ebd95589f2d03.tar.gz bcm5719-llvm-4e0f828686322bd9733676c9863ebd95589f2d03.zip |
Change RegVT in BitTestBlock and RegsForValue, to contain MVTs,
instead of EVTs.
llvm-svn: 170538
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h index 7bb1bb1fea5..1f4a247f0df 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h @@ -262,7 +262,7 @@ private: struct BitTestBlock { BitTestBlock(APInt F, APInt R, const Value* SV, - unsigned Rg, EVT RgVT, bool E, + unsigned Rg, MVT RgVT, bool E, MachineBasicBlock* P, MachineBasicBlock* D, const BitTestInfo& C): First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E), @@ -271,7 +271,7 @@ private: APInt Range; const Value *SValue; unsigned Reg; - EVT RegVT; + MVT RegVT; bool Emitted; MachineBasicBlock *Parent; MachineBasicBlock *Default; |