summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon/SIISelLowering.cpp
diff options
context:
space:
mode:
authorTom Stellard <[email protected]>2012-07-25 08:41:29 -0400
committerTom Stellard <[email protected]>2012-07-27 17:08:07 +0000
commitd36455ba2c3febe5da6fc6f53e4acd98f771532a (patch)
tree426c3d44fa11047f07773c0642b718f02b095e3c /src/gallium/drivers/radeon/SIISelLowering.cpp
parente8825ce6e12a8ec6fbe1ef76fb5e8ef8eb1b1218 (diff)
radeon/llvm: Implement getSetCCResultType for SI
Diffstat (limited to 'src/gallium/drivers/radeon/SIISelLowering.cpp')
-rw-r--r--src/gallium/drivers/radeon/SIISelLowering.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/SIISelLowering.cpp b/src/gallium/drivers/radeon/SIISelLowering.cpp
index 8528f73e409..11f79b9927a 100644
--- a/src/gallium/drivers/radeon/SIISelLowering.cpp
+++ b/src/gallium/drivers/radeon/SIISelLowering.cpp
@@ -194,6 +194,11 @@ void SITargetLowering::lowerUSE_SGPR(MachineInstr *MI,
addLiveIn(MI, MF, MRI, TII, newReg);
}
+EVT SITargetLowering::getSetCCResultType(EVT VT) const
+{
+ return MVT::i1;
+}
+
//===----------------------------------------------------------------------===//
// Custom DAG Lowering Operations
//===----------------------------------------------------------------------===//