diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-09 20:44:51 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-09 20:44:51 +0000 |
commit | 73a6aeee5748ebb120ee57a139e70d0350b4fc9f (patch) | |
tree | 68c8ffea3c55eeb787626f8d4022e31b02f4207e /gcc/cppexp.c | |
parent | 7871928278f69994071e967abcea37b4a5b715d3 (diff) | |
download | gcc-73a6aeee5748ebb120ee57a139e70d0350b4fc9f.tar.gz |
* cppexp.c (_cpp_parse_expr): Don't use unary plus.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34934 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppexp.c')
-rw-r--r-- | gcc/cppexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppexp.c b/gcc/cppexp.c index 7e2c85a0e6a..31b740f0839 100644 --- a/gcc/cppexp.c +++ b/gcc/cppexp.c @@ -842,7 +842,7 @@ _cpp_parse_expr (pfile) case CPP_PLUS: if (!(top->flags & HAVE_VALUE)) { - UNARY(+); + UNARY(/* + */); /* K+R C doesn't like unary + */ } else { |