diff options
author | Mark Mitchell <mark@codesourcery.com> | 2000-05-26 21:40:01 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-05-26 21:40:01 +0000 |
commit | defd0dea5225507ddcb79045af1f605b0b443ed6 (patch) | |
tree | 958c766176db9f4e6f187537ab4f5b58619ec7a0 /gcc/stor-layout.c | |
parent | 6625cdb595e9fa7c320e94c229c5e272893d0206 (diff) | |
download | gcc-defd0dea5225507ddcb79045af1f605b0b443ed6.zip gcc-defd0dea5225507ddcb79045af1f605b0b443ed6.tar.gz gcc-defd0dea5225507ddcb79045af1f605b0b443ed6.tar.bz2 |
tree.h (struct record_layout_info): Rename to (struct record_layout_info_s).
* tree.h (struct record_layout_info): Rename to (struct
record_layout_info_s).
* stor-layout.c (start_record_layout): Replace
`record_layout_info' with `record_layout_info_s'.
* class.c (layout_nonempty_base_or_field): Replace
`record_layout_info' with `record_layout_info_s'.
From-SVN: r34199
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r-- | gcc/stor-layout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 26aa48b..9194175 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -410,7 +410,7 @@ start_record_layout (t) tree t; { record_layout_info rli - = (record_layout_info) xmalloc (sizeof (struct record_layout_info)); + = (record_layout_info) xmalloc (sizeof (struct record_layout_info_s)); rli->t = t; |