tiny cleanup
authorRobert Bradshaw <robertwb@math.washington.edu>
Sun, 25 Apr 2010 06:49:39 +0000 (23:49 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Sun, 25 Apr 2010 06:49:39 +0000 (23:49 -0700)
Cython/Compiler/Nodes.py

index 68ab97f84df4e07e11934402eab758455edd333a..49d1376215291b89c0cc1c5d136a78abca128146 100644 (file)
@@ -5030,8 +5030,7 @@ if Options.gcc_branch_hints:
     """
 #ifdef __GNUC__
 /* Test for GCC > 2.95 */
-#if __GNUC__ > 2 || \
-              (__GNUC__ == 2 && (__GNUC_MINOR__ > 95)) 
+#if __GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95)) 
 #define likely(x)   __builtin_expect(!!(x), 1)
 #define unlikely(x) __builtin_expect(!!(x), 0)
 #else /* __GNUC__ > 2 ... */