diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-03-31 07:26:28 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-03-31 07:26:28 -0500 |
commit | d161fae48b71e59d3672890728b85f678c0b788b (patch) | |
tree | b6d0abc800da21445f996118e8c6aaa05641d710 /gcc/c-common.c | |
parent | af6f30c4652962b9f1fbed8bb098c1cf504e6bce (diff) | |
download | gcc-d161fae48b71e59d3672890728b85f678c0b788b.zip gcc-d161fae48b71e59d3672890728b85f678c0b788b.tar.gz gcc-d161fae48b71e59d3672890728b85f678c0b788b.tar.bz2 |
(init_attributes): A_FORMAT is only for decls.
From-SVN: r9271
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index b625447..0e5d492 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -255,7 +255,7 @@ init_attributes () add_attribute (A_MODE, "mode", 1, 1, 1); add_attribute (A_SECTION, "section", 1, 1, 1); add_attribute (A_ALIGNED, "aligned", 0, 1, 0); - add_attribute (A_FORMAT, "format", 3, 3, 0); + add_attribute (A_FORMAT, "format", 3, 3, 1); } /* Process the attributes listed in ATTRIBUTES and PREFIX_ATTRIBUTES |