Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
[x86/Linux] Fix extraneous parentheses (#8388)
Browse files Browse the repository at this point in the history
Fix compile error for x86/Linux
- fix "equality comparison with extraneous parentheses" for LEGACY_BACKEND
  • Loading branch information
seanshpark authored and jkotas committed Nov 30, 2016
1 parent 0d6db53 commit 5c4fe04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jit/emitxarch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6970,7 +6970,7 @@ void emitter::emitDispIns(
#ifndef LEGACY_BACKEND
|| (ins == INS_cvtss2si) || (ins == INS_cvtsd2si) || (ins == INS_cvttss2si)
#endif
)
|| 0)
{
printf(" %s, %s", emitRegName(id->idReg1(), attr), emitRegName(id->idReg2(), EA_16BYTE));
}
Expand Down

0 comments on commit 5c4fe04

Please sign in to comment.