summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2015-04-01 16:18:31 -0700
committerJason Ekstrand <[email protected]>2015-04-02 10:21:18 -0700
commite50cf5faa5709eaeea1da8759f13b140b4b3cea1 (patch)
treeaafcb3c86a05a2a6ca5cace2fb0b0a27b0275350 /src/mesa
parent0573d0e4845803969634c975355bbf55651dde19 (diff)
i965/generator: Get rid of the ! in the unreachable statement
Reviewed-by: Mark Janes <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs_generator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_generator.cpp b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
index bd12147cfed..40e51aa0f82 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_generator.cpp
@@ -1602,7 +1602,7 @@ fs_generator::generate_code(const cfg_t *cfg, int dispatch_width)
brw_set_default_compression_control(p, BRW_COMPRESSION_COMPRESSED);
break;
default:
- unreachable(!"Invalid instruction width");
+ unreachable("Invalid instruction width");
}
switch (inst->opcode) {