mirror of
https://github.com/intel/llvm.git
synced 2026-01-26 03:56:16 +08:00
Fix -Werror build with clang-cl.
llvm-svn: 286683
This commit is contained in:
@@ -1330,7 +1330,7 @@ static void WriteConstantInternal(raw_ostream &Out, const Constant *CV,
|
||||
}
|
||||
|
||||
for (User::const_op_iterator OI=CE->op_begin(); OI != CE->op_end(); ++OI) {
|
||||
if (InRangeOp && (OI - CE->op_begin()) == *InRangeOp)
|
||||
if (InRangeOp && unsigned(OI - CE->op_begin()) == *InRangeOp)
|
||||
Out << "inrange ";
|
||||
TypePrinter.print((*OI)->getType(), Out);
|
||||
Out << ' ';
|
||||
|
||||
Reference in New Issue
Block a user