Fix to work with the C preprocessor in GCC 3.3.x.
authorIan Romanick <idr@us.ibm.com>
Wed, 17 Dec 2003 21:35:44 +0000 (21:35 +0000)
committerIan Romanick <idr@us.ibm.com>
Wed, 17 Dec 2003 21:35:44 +0000 (21:35 +0000)
src/mesa/x86/assyntax.h

index 13f980d57da8db9a31c73ab9490568180c9bf53d..f37bde3a7d1cf0cf609f58b0b899869fc4f13881 100644 (file)
 
 /* Addressing Modes */
 /* Immediate Mode */
-#define ADDR(a)                CHOICE(CONCAT($,a), CONCAT($,a), a)
-#define CONST(a)       CHOICE(CONCAT($,a), CONCAT($,a), a)
+#define ADDR(a)                CHOICE(CONCAT($,a), $a, a)
+#define CONST(a)       CHOICE(CONCAT($,a), $a, a)
 
 /* Indirect Mode */
 #define CONTENT(a)     CHOICE(a, a, (a))        /* take contents of variable */