diff options
author | Richard Stallman <rms@gnu.org> | 1992-07-29 03:46:49 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-07-29 03:46:49 +0000 |
commit | ef57b1e9f0820bcb629249aad4f514d235f268c7 (patch) | |
tree | dd155a06104b51cfffb5367583255fbb6350f046 /gcc/c-common.c | |
parent | 4b1f5e8c50f7a6cf9fa37d56ddaa307f31aa8759 (diff) | |
download | gcc-ef57b1e9f0820bcb629249aad4f514d235f268c7.zip gcc-ef57b1e9f0820bcb629249aad4f514d235f268c7.tar.gz gcc-ef57b1e9f0820bcb629249aad4f514d235f268c7.tar.bz2 |
(decl_attributes): Call layout_decl with two arguments.
From-SVN: r1711
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 9e76fab..50aa60e 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -216,7 +216,7 @@ decl_attributes (decl, attributes) { TREE_TYPE (decl) = type; DECL_SIZE (decl) = 0; - layout_decl (decl); + layout_decl (decl, 0); } else error ("no data type for mode `%s'", specified_name); |