Revision: 42107
          http://brlcad.svn.sourceforge.net/brlcad/?rev=42107&view=rev
Author:   brlcad
Date:     2011-01-12 00:56:19 +0000 (Wed, 12 Jan 2011)

Log Message:
-----------
no guarantee that __GNUC__ will be defined either.

Modified Paths:
--------------
    brlcad/trunk/src/libbu/simd.c

Modified: brlcad/trunk/src/libbu/simd.c
===================================================================
--- brlcad/trunk/src/libbu/simd.c       2011-01-12 00:55:34 UTC (rev 42106)
+++ brlcad/trunk/src/libbu/simd.c       2011-01-12 00:56:19 UTC (rev 42107)
@@ -26,7 +26,7 @@
 int
 bu_simd_level()
 {
-#if __GNUC__ && defined( __SSE__ )
+#if defined(__GNUC__) && defined(__SSE__)
     int d;
     /* since we're PIC, we need to stash EBX on ia32 */
 #ifdef __i386__


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to