[llvm] r180231 - R600: Initialize BooleanVectorContents

Tom Stellard thomas.stellard at amd.com
Wed Apr 24 16:56:18 PDT 2013


Author: tstellar
Date: Wed Apr 24 18:56:18 2013
New Revision: 180231

URL: http://llvm.org/viewvc/llvm-project?rev=180231&view=rev
Log:
R600: Initialize BooleanVectorContents

Fixes test/CodeGen/R600/setcc.ll

Modified:
    llvm/trunk/lib/Target/R600/R600ISelLowering.cpp

Modified: llvm/trunk/lib/Target/R600/R600ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/R600/R600ISelLowering.cpp?rev=180231&r1=180230&r2=180231&view=diff
==============================================================================
--- llvm/trunk/lib/Target/R600/R600ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/R600/R600ISelLowering.cpp Wed Apr 24 18:56:18 2013
@@ -93,6 +93,7 @@ R600TargetLowering::R600TargetLowering(T
   setTargetDAGCombine(ISD::SELECT_CC);
 
   setBooleanContents(ZeroOrNegativeOneBooleanContent);
+  setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
   setSchedulingPreference(Sched::VLIW);
 }
 





More information about the llvm-commits mailing list