diff options
author | Vinson Lee <[email protected]> | 2010-08-21 23:28:52 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-08-21 23:28:52 -0700 |
commit | 0f3b3751b8643352dcc242567b3696bd1505df1d (patch) | |
tree | 0a060dedbf79c6f4bf5cc6a61cec0f907fa10b37 /src/gallium/auxiliary/util | |
parent | 2a7493ada4503db855ed35031d48fcf2a31eded3 (diff) |
util: Define dump_cpu only for DEBUG builds.
dump_cpu is used only when DEBUG is defined.
Fixes the following GCC warning on builds without DEBUG defined.
util/u_cpu_detect.c:76: warning: 'debug_get_option_dump_cpu' defined but not used
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r-- | src/gallium/auxiliary/util/u_cpu_detect.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/util/u_cpu_detect.c b/src/gallium/auxiliary/util/u_cpu_detect.c index f33d6b34617..5d0b16d28e1 100644 --- a/src/gallium/auxiliary/util/u_cpu_detect.c +++ b/src/gallium/auxiliary/util/u_cpu_detect.c @@ -73,7 +73,9 @@ #endif +#if DEBUG DEBUG_GET_ONCE_BOOL_OPTION(dump_cpu, "GALLIUM_DUMP_CPU", FALSE) +#endif struct util_cpu_caps util_cpu_caps; |