aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Blackfin/BlackfinISelLowering.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-08-10 18:56:59 +0000
committerOwen Anderson <resistor@mac.com>2009-08-10 18:56:59 +0000
commit77547befdc430633aaedf4130ddf17d953ed552e (patch)
tree338bb377f6e2a02c964d4ee6f38a91a1464bbd98 /lib/Target/Blackfin/BlackfinISelLowering.cpp
parent338825c1928b956b2cbcc2c165a60afddd100398 (diff)
downloadexternal_llvm-77547befdc430633aaedf4130ddf17d953ed552e.zip
external_llvm-77547befdc430633aaedf4130ddf17d953ed552e.tar.gz
external_llvm-77547befdc430633aaedf4130ddf17d953ed552e.tar.bz2
Start moving TargetLowering away from using full MVTs and towards SimpleValueType, which will simplify the privatization of IntegerType in the future.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78584 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Blackfin/BlackfinISelLowering.cpp')
-rw-r--r--lib/Target/Blackfin/BlackfinISelLowering.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Blackfin/BlackfinISelLowering.cpp b/lib/Target/Blackfin/BlackfinISelLowering.cpp
index fe06d57..8b83791 100644
--- a/lib/Target/Blackfin/BlackfinISelLowering.cpp
+++ b/lib/Target/Blackfin/BlackfinISelLowering.cpp
@@ -137,7 +137,7 @@ const char *BlackfinTargetLowering::getTargetNodeName(unsigned Opcode) const {
}
}
-MVT BlackfinTargetLowering::getSetCCResultType(MVT VT) const {
+MVT::SimpleValueType BlackfinTargetLowering::getSetCCResultType(MVT VT) const {
// SETCC always sets the CC register. Technically that is an i1 register, but
// that type is not legal, so we treat it as an i32 register.
return MVT::i32;