Fix warning with gcc-4.0 and signed/unsigned.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85648 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2009-10-31 09:24:35 +00:00
parent 9eda68988e
commit cdfa666c30

View File

@ -4233,7 +4233,7 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) {
EVT Ty = Arg.getValueType();
if (CI->getZExtValue() < 2)
setValue(&I, DAG.getConstant(-1, Ty));
setValue(&I, DAG.getConstant(-1U, Ty));
else
setValue(&I, DAG.getConstant(0, Ty));
return 0;