diff options
| author | Owen Anderson <resistor@mac.com> | 2009-08-10 18:56:59 +0000 |
|---|---|---|
| committer | Owen Anderson <resistor@mac.com> | 2009-08-10 18:56:59 +0000 |
| commit | c30530d105732fdec2c94f2f46ec5b1a8955d1ba (patch) | |
| tree | c4b0b1f27a018fd714404e2bcaf69dceaa5d9ad5 /llvm/lib/Target/Mips | |
| parent | 2375952a47cadf71dc8b0136a8f775363823551c (diff) | |
| download | bcm5719-llvm-c30530d105732fdec2c94f2f46ec5b1a8955d1ba.tar.gz bcm5719-llvm-c30530d105732fdec2c94f2f46ec5b1a8955d1ba.zip | |
Start moving TargetLowering away from using full MVTs and towards SimpleValueType, which will simplify the privatization of IntegerType in the future.
llvm-svn: 78584
Diffstat (limited to 'llvm/lib/Target/Mips')
| -rw-r--r-- | llvm/lib/Target/Mips/MipsISelLowering.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/Mips/MipsISelLowering.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Mips/MipsISelLowering.cpp b/llvm/lib/Target/Mips/MipsISelLowering.cpp index 7ced391e7b4..54d260e8df6 100644 --- a/llvm/lib/Target/Mips/MipsISelLowering.cpp +++ b/llvm/lib/Target/Mips/MipsISelLowering.cpp @@ -165,7 +165,7 @@ MipsTargetLowering(MipsTargetMachine &TM) computeRegisterProperties(); } -MVT MipsTargetLowering::getSetCCResultType(MVT VT) const { +MVT::SimpleValueType MipsTargetLowering::getSetCCResultType(MVT VT) const { return MVT::i32; } diff --git a/llvm/lib/Target/Mips/MipsISelLowering.h b/llvm/lib/Target/Mips/MipsISelLowering.h index e116fbe2e59..5e5aacdea04 100644 --- a/llvm/lib/Target/Mips/MipsISelLowering.h +++ b/llvm/lib/Target/Mips/MipsISelLowering.h @@ -80,7 +80,7 @@ namespace llvm { virtual const char *getTargetNodeName(unsigned Opcode) const; /// getSetCCResultType - get the ISD::SETCC result ValueType - MVT getSetCCResultType(MVT VT) const; + MVT::SimpleValueType getSetCCResultType(MVT VT) const; /// getFunctionAlignment - Return the Log2 alignment of this function. virtual unsigned getFunctionAlignment(const Function *F) const; |

