Add USE_SPARC_ASM diagnostics to print_info.

This commit is contained in:
davem69
2001-06-05 03:58:20 +00:00
parent b20cea3902
commit e4f84b4936

View 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
}