[Intel-gfx] [PATCH 65/90] assembler: Fix ')' placement in condition

Damien Lespiau damien.lespiau at intel.com
Mon Feb 4 16:28:00 CET 2013


A small typo in the condition.

Signed-off-by: Damien Lespiau <damien.lespiau at intel.com>
---
 assembler/gram.y |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/assembler/gram.y b/assembler/gram.y
index 4b5c6a3..c86e28f 100644
--- a/assembler/gram.y
+++ b/assembler/gram.y
@@ -2226,7 +2226,7 @@ accreg:		ACCREG subregnum
 
 flagreg:	FLAGREG subregnum
 		{
-		  if ((!IS_GENp(7) && $1) > 0 ||
+		  if ((!IS_GENp(7) && $1 > 0) ||
 		      (IS_GENp(7) && $1 > 1)) {
                     error(&@2, "flag register number %d out of range\n", $1);
 		  }
-- 
1.7.7.5




More information about the Intel-gfx mailing list