mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
TableGen/FixedLenDecoderEmitter.cpp: Fix a potential mask overflow in fieldFromInstruction().
Reported by Yang Yongyong, thanks! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171101 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
00ba3014d8
commit
fc093def2d
@ -1866,7 +1866,7 @@ static void emitFieldFromInstruction(formatted_raw_ostream &OS) {
|
||||
<< " if (numBits == sizeof(InsnType)*8)\n"
|
||||
<< " fieldMask = (InsnType)(-1LL);\n"
|
||||
<< " else\n"
|
||||
<< " fieldMask = ((1 << numBits) - 1) << startBit;\n"
|
||||
<< " fieldMask = (((InsnType)1 << numBits) - 1) << startBit;\n"
|
||||
<< " return (insn & fieldMask) >> startBit;\n"
|
||||
<< "}\n\n";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user