Skip to content

Commit

Permalink
SparcAsmParser.cpp: Appease msc x86.
Browse files Browse the repository at this point in the history
llvm-svn: 245661
  • Loading branch information
chapuni committed Aug 21, 2015
1 parent 1108ae0 commit cf61aae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
Expand Up @@ -440,7 +440,7 @@ void SparcAsmParser::expandSET(MCInst &Inst, SMLoc IDLoc,
int64_t RawImmValue = IsImm ? MCValOp.getImm() : 0;

// Allow either a signed or unsigned 32-bit immediate.
if (RawImmValue < -2147483648 || RawImmValue > 4294967295) {
if (RawImmValue < -2147483648LL || RawImmValue > 4294967295LL) {
Error(IDLoc, "set: argument must be between -2147483648 and 4294967295");
return;
}
Expand Down

0 comments on commit cf61aae

Please sign in to comment.