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/Alpha/AlphaISelLowering.cpp | |
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/Alpha/AlphaISelLowering.cpp')
-rw-r--r-- | llvm/lib/Target/Alpha/AlphaISelLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaISelLowering.cpp b/llvm/lib/Target/Alpha/AlphaISelLowering.cpp index 0c50567287b..c8817b16965 100644 --- a/llvm/lib/Target/Alpha/AlphaISelLowering.cpp +++ b/llvm/lib/Target/Alpha/AlphaISelLowering.cpp @@ -168,7 +168,7 @@ AlphaTargetLowering::AlphaTargetLowering(TargetMachine &TM) computeRegisterProperties(); } -MVT AlphaTargetLowering::getSetCCResultType(MVT VT) const { +MVT::SimpleValueType AlphaTargetLowering::getSetCCResultType(MVT VT) const { return MVT::i64; } |