diff options
author | Scott Michel <scottm@aero.org> | 2008-03-10 15:42:14 +0000 |
---|---|---|
committer | Scott Michel <scottm@aero.org> | 2008-03-10 15:42:14 +0000 |
commit | 502151f4cd47b5b42462b95736a0c2ab1d57072a (patch) | |
tree | 64c14c0f5887248e27ce10d793b5530b6eedb91c /lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | d01feb2b9abe5d2138d3663b12fa747ae65c3072 (diff) | |
download | external_llvm-502151f4cd47b5b42462b95736a0c2ab1d57072a.zip external_llvm-502151f4cd47b5b42462b95736a0c2ab1d57072a.tar.gz external_llvm-502151f4cd47b5b42462b95736a0c2ab1d57072a.tar.bz2 |
Give TargetLowering::getSetCCResultType() a parameter so that ISD::SETCC's
return ValueType can depend its operands' ValueType.
This is a cosmetic change, no functionality impacted.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48145 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/TargetLowering.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 351fe81..0025766 100644 --- a/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -191,7 +191,7 @@ TargetLowering::TargetLowering(TargetMachine &tm) IsLittleEndian = TD->isLittleEndian(); UsesGlobalOffsetTable = false; - ShiftAmountTy = SetCCResultTy = PointerTy = getValueType(TD->getIntPtrType()); + ShiftAmountTy = PointerTy = getValueType(TD->getIntPtrType()); ShiftAmtHandling = Undefined; memset(RegClassForVT, 0,MVT::LAST_VALUETYPE*sizeof(TargetRegisterClass*)); memset(TargetDAGCombineArray, 0, array_lengthof(TargetDAGCombineArray)); @@ -372,6 +372,13 @@ const char *TargetLowering::getTargetNodeName(unsigned Opcode) const { return NULL; } + +MVT::ValueType +TargetLowering::getSetCCResultType(const SDOperand &) const { + return getValueType(TD->getIntPtrType()); +} + + /// getVectorTypeBreakdown - Vector types are broken down into some number of /// legal first class types. For example, MVT::v8f32 maps to 2 MVT::v4f32 /// with Altivec or SSE1, or 8 promoted MVT::f64 values with the X86 FP stack. |