Mesa (master): i965: Fix test_eu_validate.cpp

Matt Turner mattst88 at kemper.freedesktop.org
Tue May 16 18:45:11 UTC 2017


Module: Mesa
Branch: master
Commit: 169e1e26ee7fcc6dfad538fe695957cbb2186ebd
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=169e1e26ee7fcc6dfad538fe695957cbb2186ebd

Author: Matt Turner <mattst88 at gmail.com>
Date:   Tue May 16 11:43:57 2017 -0700

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 <awatry at gmail.com>

---

 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 ed67c4d422..09f4cc142a 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) {




More information about the mesa-commit mailing list