From 9feb6302f93a3c4192f6eaaf8651154d419ff4ca Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Tue, 16 Jun 2020 16:53:05 -0700 Subject: [PATCH] intel/tools: Drop srctype from ipreg It's unused, and it would cause shift/reduce conflicts after the next patch. Reviewed-by: Sagar Ghuge Part-of: --- src/intel/tools/i965_gram.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/tools/i965_gram.y b/src/intel/tools/i965_gram.y index 989401d3b1e..55eaabc154d 100644 --- a/src/intel/tools/i965_gram.y +++ b/src/intel/tools/i965_gram.y @@ -1880,7 +1880,7 @@ controlreg: ; ipreg: - IPREG srctype { $$ = brw_ip_reg(); } + IPREG { $$ = brw_ip_reg(); } ; nullreg: -- 2.30.2