trace: fix new gcc6 warnings

src/gallium/drivers/trace/tr_context.c:1713:39: warning: ‘rbug_blocker_flags’ defined but not used [-Wunused-const-variable]
 static const struct debug_named_value rbug_blocker_flags[] = {
                                       ^~~~~~~~~~~~~~~~~~

Note that use of rbug_blocker_flags was removed in:

commit 5494332128
Author: Jakob Bornecrantz <jakob@vmware.com>
Date:   Wed May 12 19:26:19 2010 +0100

    trace: Remove rbug from trace

Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
Rob Clark 2016-02-16 13:01:03 -05:00 committed by Rob Clark
parent 5051d85b03
commit 93c62fdee9
1 changed files with 0 additions and 7 deletions

View File

@ -1709,13 +1709,6 @@ static void trace_context_launch_grid(struct pipe_context *_pipe,
trace_dump_call_end();
}
static const struct debug_named_value rbug_blocker_flags[] = {
{"before", 1, NULL},
{"after", 2, NULL},
DEBUG_NAMED_VALUE_END
};
struct pipe_context *
trace_context_create(struct trace_screen *tr_scr,
struct pipe_context *pipe)