Message ID | 1391792619-17110-3-git-send-email-thomas.wood@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
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"); }
Signed-off-by: Thomas Wood <thomas.wood@intel.com> --- assembler/gram.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)