mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
tools: fix parenthesis warning from GCC
Add parenthesis as suggested by GCC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210194 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fbb7c20395
commit
510315c386
@ -444,7 +444,7 @@ bool Decoder::opcode_11111111(const ulittle8_t *OC, unsigned &Offset,
|
||||
|
||||
void Decoder::decodeOpcodes(ArrayRef<ulittle8_t> Opcodes, unsigned Offset,
|
||||
bool Prologue) {
|
||||
assert(!Prologue || Offset == 0 && "prologue should always use offset 0");
|
||||
assert((!Prologue || Offset == 0) && "prologue should always use offset 0");
|
||||
|
||||
bool Terminated = false;
|
||||
for (unsigned OI = Offset, OE = Opcodes.size(); !Terminated && OI < OE; ) {
|
||||
|
Loading…
Reference in New Issue
Block a user