OSDN Git Service

attribute_optimize: fix typo with args
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Mon, 12 Apr 2010 13:09:25 +0000 (15:09 +0200)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Mon, 12 Apr 2010 13:09:25 +0000 (15:09 +0200)
curious how 308f5c6e5fd56ea3d1a5512e34388aad788f1180 ever worked.. :P

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
include/libc-symbols.h

index 2729d30..4615a6a 100644 (file)
@@ -86,9 +86,9 @@
 #endif
 
 #if defined __GNUC__ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4))
-# define attribute_optimize(lvl) __attribute__ ((optimize(x)))
+# define attribute_optimize(x) __attribute__ ((optimize(x)))
 #else
-# define attribute_optimize(lvl)
+# define attribute_optimize(x)
 #endif
 
 #define attribute_unused __attribute__ ((unused))