diff options
author | Jason Ekstrand <[email protected]> | 2015-04-01 16:18:31 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-04-02 10:21:18 -0700 |
commit | e50cf5faa5709eaeea1da8759f13b140b4b3cea1 (patch) | |
tree | aafcb3c86a05a2a6ca5cace2fb0b0a27b0275350 /src/mesa | |
parent | 0573d0e4845803969634c975355bbf55651dde19 (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.cpp | 2 |
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) { |