diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-02 19:15:45 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-02 19:15:45 +0000 |
commit | 5a6aa39e1b2f6146fd133d6b851a920a74804959 (patch) | |
tree | dda008c67b94a4327b7bd81b4869f35e15693667 /gcc/c-objc-common.c | |
parent | b991d49eaff458357a19c70fa016ba2a4bb53fb8 (diff) | |
download | gcc-5a6aa39e1b2f6146fd133d6b851a920a74804959.tar.gz |
* c-objc-common.c (c_tree_printer): Correct description of %E.
Don't fall through after printing an expression.
testsuite:
* gcc.dg/20040920-1.c: Update expected message text.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88431 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-objc-common.c')
-rw-r--r-- | gcc/c-objc-common.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/c-objc-common.c b/gcc/c-objc-common.c index 0259fe5de60..4d321364cc1 100644 --- a/gcc/c-objc-common.c +++ b/gcc/c-objc-common.c @@ -187,7 +187,7 @@ c_objc_common_init (void) source-level entity onto BUFFER. The meaning of the format specifiers is as follows: %D: a general decl, - %E: An expression, + %E: an identifier or expression, %F: a function declaration, %T: a type. @@ -235,7 +235,10 @@ c_tree_printer (pretty_printer *pp, text_info *text) if (TREE_CODE (t) == IDENTIFIER_NODE) n = IDENTIFIER_POINTER (t); else - pp_expression (cpp, t); + { + pp_expression (cpp, t); + return true; + } break; default: |