summaryrefslogtreecommitdiff
path: root/src/mesa/x86/3dnow.c
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-06-14 21:55:11 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-06-14 21:55:11 +0000
commitc3501b01d1e3c8d107ee4da79549652c26bb05bc (patch)
tree8b3d1b88253f5ca8d4a1bc2d3d8eb2f59082a30d /src/mesa/x86/3dnow.c
parent9b08f27000b94364fb2045d2e305edbfb46e49ff (diff)
added dummy function to silence compiler warning
Diffstat (limited to 'src/mesa/x86/3dnow.c')
-rw-r--r--src/mesa/x86/3dnow.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/mesa/x86/3dnow.c b/src/mesa/x86/3dnow.c
index a32815bf62..f61e369edc 100644
--- a/src/mesa/x86/3dnow.c
+++ b/src/mesa/x86/3dnow.c
@@ -1,10 +1,10 @@
-/* $Id: 3dnow.c,v 1.3 1999/11/12 04:57:22 kendallb Exp $ */
+/* $Id: 3dnow.c,v 1.4 2000/06/14 21:55:11 brianp Exp $ */
/*
* Mesa 3-D graphics library
- * Version: 3.1
+ * Version: 3.3
*
- * Copyright (C) 1999 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2000 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -186,4 +186,13 @@ void gl_init_3dnow_asm_transforms (void)
gl_project_clipped_v16 = gl_3dnow_project_clipped_vertices;
}
+#else
+
+
+/* silence compiler warning */
+extern void _mesa_3dnow_dummy_function(void);
+void _mesa_3dnow_dummy_function(void)
+{
+}
+
#endif