From 5c4fe045b9b6873158a85cec2458af80c5570d0a Mon Sep 17 00:00:00 2001 From: SaeHie Park Date: Wed, 30 Nov 2016 16:42:25 +0900 Subject: [PATCH] [x86/Linux] Fix extraneous parentheses (#8388) Fix compile error for x86/Linux - fix "equality comparison with extraneous parentheses" for LEGACY_BACKEND --- src/jit/emitxarch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jit/emitxarch.cpp b/src/jit/emitxarch.cpp index 9e75babde4aa..fdfe5d4fa9af 100644 --- a/src/jit/emitxarch.cpp +++ b/src/jit/emitxarch.cpp @@ -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)); }