summaryrefslogtreecommitdiff
path: root/src/intel/compiler/test_eu_compact.cpp
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2020-09-24 11:31:13 -0700
committerIan Romanick <ian.d.romanick@intel.com>2020-10-15 09:29:53 -0700
commit262ca98b3a45075800d88abb9a069d8c21578330 (patch)
tree658e0d452f7e8991de81698052a680714d387a55 /src/intel/compiler/test_eu_compact.cpp
parente22f106e017ca23ad3cf21e9f705fdb8dbee65ed (diff)
downloadmesa-262ca98b3a45075800d88abb9a069d8c21578330.tar.gz
intel/compiler: Remove Gen10-specific code
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6899>
Diffstat (limited to 'src/intel/compiler/test_eu_compact.cpp')
-rw-r--r--src/intel/compiler/test_eu_compact.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/intel/compiler/test_eu_compact.cpp b/src/intel/compiler/test_eu_compact.cpp
index 74f7aaecf3b..a371a32862c 100644
--- a/src/intel/compiler/test_eu_compact.cpp
+++ b/src/intel/compiler/test_eu_compact.cpp
@@ -328,12 +328,15 @@ run_tests(const struct gen_device_info *devinfo)
}
int
-main(int argc, char **argv)
+main(UNUSED int argc, UNUSED char **argv)
{
struct gen_device_info *devinfo = (struct gen_device_info *)calloc(1, sizeof(*devinfo));
bool fail = false;
for (devinfo->gen = 5; devinfo->gen <= 12; devinfo->gen++) {
+ if (devinfo->gen == 10)
+ continue;
+
fail |= run_tests(devinfo);
}