x86: Silence unused variable warning on Mac OS X.
authorVinson Lee <vlee@vmware.com>
Sat, 18 Sep 2010 06:59:23 +0000 (23:59 -0700)
committerVinson Lee <vlee@vmware.com>
Sat, 18 Sep 2010 06:59:23 +0000 (23:59 -0700)
Silences the following GCC warning on Mac OS X.
x86/common_x86.c:58: warning: 'detection_debug' defined but not used

src/mesa/x86/common_x86.c

index f763a3aa8a4bc3c2ea7fb3fcdcb7d56de1c2989c..b70ee5084dd62dce7ce329198646e816ba18e474 100644 (file)
@@ -331,4 +331,6 @@ _mesa_get_x86_features(void)
 #endif
 
 #endif /* USE_X86_ASM */
+
+   (void) detection_debug;
 }