diff options
author | Matt Turner <[email protected]> | 2017-05-16 11:43:57 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2017-05-16 11:45:07 -0700 |
commit | 169e1e26ee7fcc6dfad538fe695957cbb2186ebd (patch) | |
tree | 11b7a4b3483a5beec8444aea1102e941c43badb0 /src/intel/compiler | |
parent | b5437fc05c7d8fb3899b073b451c7c658c4dc441 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/intel/compiler')
-rw-r--r-- | src/intel/compiler/test_eu_validate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |