From 43019c6f2cb6b35589213b3ae07b3859825ab1fe Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Sat, 29 Feb 2020 16:12:25 -0800 Subject: [PATCH] intel/compiler: Remove unnecessary local variables These are already provided in the fs_reg_alloc class. Reviewed-by: Ian Romanick Part-of: --- src/intel/compiler/brw_fs_reg_allocate.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/intel/compiler/brw_fs_reg_allocate.cpp b/src/intel/compiler/brw_fs_reg_allocate.cpp index 8c16d117bc0..a0eb75244d2 100644 --- a/src/intel/compiler/brw_fs_reg_allocate.cpp +++ b/src/intel/compiler/brw_fs_reg_allocate.cpp @@ -719,9 +719,6 @@ fs_reg_alloc::setup_inst_interference(fs_inst *inst) void fs_reg_alloc::build_interference_graph(bool allow_spilling) { - const gen_device_info *devinfo = fs->devinfo; - const brw_compiler *compiler = fs->compiler; - /* Compute the RA node layout */ node_count = 0; first_payload_node = node_count; -- 2.30.2