mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
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:
parent
9eda68988e
commit
cdfa666c30
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user