From eedbce9c63a3f385908bdc8a69e8be98dd3522ff Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Tue, 30 Sep 2014 17:27:33 -0700 Subject: [PATCH] i965/fs: Fix the build --- src/mesa/drivers/dri/i965/brw_fs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index fd59ef8..709c5b0 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -2975,7 +2975,7 @@ fs_visitor::lower_load_payload() foreach_block_and_inst_safe (block, fs_inst, inst, cfg) { int dst_reg; - } if (inst->dst.file == GRF) { + if (inst->dst.file == GRF) { dst_reg = vgrf_to_reg[inst->dst.reg]; } else { /* MRF */ -- 2.7.4