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 | 27bfb67d9ac01e9bf33a7b105c7fe842525b7582 (patch) | |
tree | 338bb377f6e2a02c964d4ee6f38a91a1464bbd98 /lib/Target/Blackfin | |
parent | 0f10cbfdb0460441b293ccc3b828668164c19fde (diff) | |
download | external_llvm-27bfb67d9ac01e9bf33a7b105c7fe842525b7582.zip external_llvm-27bfb67d9ac01e9bf33a7b105c7fe842525b7582.tar.gz external_llvm-27bfb67d9ac01e9bf33a7b105c7fe842525b7582.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')
-rw-r--r-- | lib/Target/Blackfin/BlackfinISelLowering.cpp | 2 | ||||
-rw-r--r-- | lib/Target/Blackfin/BlackfinISelLowering.h | 2 |
2 files changed, 2 insertions, 2 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; diff --git a/lib/Target/Blackfin/BlackfinISelLowering.h b/lib/Target/Blackfin/BlackfinISelLowering.h index fd0d30c..a0e88a9 100644 --- a/lib/Target/Blackfin/BlackfinISelLowering.h +++ b/lib/Target/Blackfin/BlackfinISelLowering.h @@ -33,7 +33,7 @@ namespace llvm { int VarArgsFrameOffset; // Frame offset to start of varargs area. public: BlackfinTargetLowering(TargetMachine &TM); - virtual MVT getSetCCResultType(MVT VT) const; + virtual MVT::SimpleValueType getSetCCResultType(MVT VT) const; virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG); virtual void ReplaceNodeResults(SDNode *N, SmallVectorImpl<SDValue> &Results, |