Add USE_SPARC_ASM diagnostics to print_info.
authordavem69 <davem69>
Tue, 5 Jun 2001 03:58:20 +0000 (03:58 +0000)
committerdavem69 <davem69>
Tue, 5 Jun 2001 03:58:20 +0000 (03:58 +0000)
src/mesa/main/context.c

index 4ff1941..ee6953d 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: context.c,v 1.139 2001/05/29 15:23:48 brianp Exp $ */
+/* $Id: context.c,v 1.140 2001/06/05 03:58:20 davem69 Exp $ */
 
 /*
  * Mesa 3-D graphics library
@@ -1795,6 +1795,11 @@ static void print_info( void )
 #else
    fprintf(stderr, "Mesa x86-optimized: NO\n");
 #endif
+#if defined(USE_SPARC_ASM)
+   fprintf(stderr, "Mesa sparc-optimized: YES\n");
+#else
+   fprintf(stderr, "Mesa sparc-optimized: NO\n");
+#endif
 }