diff mbox

[i-g-t,2/3] assembler: fix condition for printing a warning

Message ID 1391792619-17110-3-git-send-email-thomas.wood@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Thomas Wood Feb. 7, 2014, 5:03 p.m. UTC
Signed-off-by: Thomas Wood <thomas.wood@intel.com>
---
 assembler/gram.y | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/assembler/gram.y b/assembler/gram.y
index ad4cb29..f4145bd 100644
--- a/assembler/gram.y
+++ b/assembler/gram.y
@@ -351,7 +351,7 @@  static bool validate_src_reg(struct brw_program_instruction *insn,
     /* B. If ExecSize = Width and HorzStride ? 0, VertStride must be set to
      * Width * HorzStride. */
     if (execsize == width && hstride != 0) {
-	if (vstride != -1 && vstride != width * hstride);
+	if (vstride != -1 && vstride != width * hstride)
 	    warn(ALL, location, "execution size == width and hstride != 0 but "
 		 "vstride is not width * hstride\n");
     }