diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-07-09 20:44:51 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-07-09 20:44:51 +0000 |
commit | 66267cdb85cc3c32c160b48bf1fba73f0b9aaa44 (patch) | |
tree | 68c8ffea3c55eeb787626f8d4022e31b02f4207e /gcc/cppexp.c | |
parent | 91fcd1584b47b95f35043b1ac1c4f8ca92a6e16f (diff) | |
download | gcc-66267cdb85cc3c32c160b48bf1fba73f0b9aaa44.zip gcc-66267cdb85cc3c32c160b48bf1fba73f0b9aaa44.tar.gz gcc-66267cdb85cc3c32c160b48bf1fba73f0b9aaa44.tar.bz2 |
* cppexp.c (_cpp_parse_expr): Don't use unary plus.
From-SVN: r34934
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 7e2c85a..31b740f 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 { |