From 169e1e26ee7fcc6dfad538fe695957cbb2186ebd Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Tue, 16 May 2017 11:43:57 -0700 Subject: [PATCH] i965: Fix test_eu_validate.cpp Broken by commit a7217e909ce6 ("i965: Pass pointer and end of assembly to brw_validate_instructions"). Reported-by: Aaron Watry --- src/intel/compiler/test_eu_validate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/compiler/test_eu_validate.cpp b/src/intel/compiler/test_eu_validate.cpp index ed67c4d4228..09f4cc142a5 100644 --- a/src/intel/compiler/test_eu_validate.cpp +++ b/src/intel/compiler/test_eu_validate.cpp @@ -118,7 +118,7 @@ validate(struct brw_codegen *p) annotation.ann[annotation.ann_count].offset = p->next_insn_offset; } - bool ret = brw_validate_instructions(devinfo, p->store, 0, + bool ret = brw_validate_instructions(p->devinfo, p->store, 0, p->next_insn_offset, &annotation); if (print) { -- 2.30.2