From: Jason Ekstrand Date: Wed, 1 Apr 2015 23:18:31 +0000 (-0700) Subject: i965/generator: Get rid of the ! in the unreachable statement X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e50cf5faa5709eaeea1da8759f13b140b4b3cea1;p=mesa.git i965/generator: Get rid of the ! in the unreachable statement Reviewed-by: Mark Janes --- 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) {