summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-04-24 23:56:18 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-04-24 23:56:18 +0000
commitaa6deab60871d251bf121c2b894105e68f349ba5 (patch)
treea73dd5ecea8fd9b683a42182b86c7080cd706dd3
parent87cba4a4c1d5b8b026c83b0916b37255600ecd5f (diff)
downloadllvm-aa6deab60871d251bf121c2b894105e68f349ba5.tar.gz
llvm-aa6deab60871d251bf121c2b894105e68f349ba5.tar.bz2
llvm-aa6deab60871d251bf121c2b894105e68f349ba5.tar.xz
R600: Initialize BooleanVectorContents
Fixes test/CodeGen/R600/setcc.ll git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180231 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/R600/R600ISelLowering.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/R600/R600ISelLowering.cpp b/lib/Target/R600/R600ISelLowering.cpp
index 53e6e51dd2..a66bacaa5f 100644
--- a/lib/Target/R600/R600ISelLowering.cpp
+++ b/lib/Target/R600/R600ISelLowering.cpp
@@ -93,6 +93,7 @@ R600TargetLowering::R600TargetLowering(TargetMachine &TM) :
setTargetDAGCombine(ISD::SELECT_CC);
setBooleanContents(ZeroOrNegativeOneBooleanContent);
+ setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
setSchedulingPreference(Sched::VLIW);
}