diff options
author | Martin Liska <mliska@suse.cz> | 2020-05-19 10:39:30 +0200 |
---|---|---|
committer | Giuliano Belinassi <giuliano.belinassi@usp.br> | 2020-08-17 13:03:44 -0300 |
commit | cd6d51a218b4f7c8904cacf832eee41fb966b863 (patch) | |
tree | a38223b94c8da64e30d799201653e264955fa74e /gcc | |
parent | 1cf16d16030e9b0abae1722ae9cd5d71d79b1bd8 (diff) | |
download | gcc-cd6d51a218b4f7c8904cacf832eee41fb966b863.zip gcc-cd6d51a218b4f7c8904cacf832eee41fb966b863.tar.gz gcc-cd6d51a218b4f7c8904cacf832eee41fb966b863.tar.bz2 |
Fix typo in c-parser.c.
gcc/c/ChangeLog:
* c-parser.c: Fix typo.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c/c-parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c/c-parser.c b/gcc/c/c-parser.c index 5c8502b..5d11e7e 100644 --- a/gcc/c/c-parser.c +++ b/gcc/c/c-parser.c @@ -73,7 +73,7 @@ along with GCC; see the file COPYING3. If not see /* We need to walk over decls with incomplete struct/union/enum types after parsing the whole translation unit. In finish_decl(), if the decl is static, has incomplete - struct/union/enum type, it is appeneded to incomplete_record_decls. + struct/union/enum type, it is appended to incomplete_record_decls. In c_parser_translation_unit(), we iterate over incomplete_record_decls and report error if any of the decls are still incomplete. */ |