This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Trival patch cppexp.c
- To: gcc-patches at gcc dot gnu dot org
- Subject: Trival patch cppexp.c
- From: Graham Stott <grahams at redhat dot com>
- Date: Tue, 31 Jul 2001 00:34:06 +0100
All
Bootstrapped x86-linux
Graham
ChangeLog
* cppexp.c (EXTRACT_PRIO): Uppercase and parenthsize macro
parameter.
(EXTRACT_FLAGS): Likewise.
-----------------------------------------------------
Index: gcc/cppexp.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cppexp.c,v
retrieving revision 1.94
diff -r1.94 cppexp.c
467,468c467,468
< #define EXTRACT_PRIO(cnst) (cnst >> FLAG_BITS)
< #define EXTRACT_FLAGS(cnst) (cnst & FLAG_MASK)
---
> #define EXTRACT_PRIO(CNST) ((CNST) >> FLAG_BITS)
> #define EXTRACT_FLAGS(CNST) ((CNST) & FLAG_MASK)
-----------------------------------------------------