diff options
author | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-07-12 02:56:45 +0000 |
---|---|---|
committer | rms <rms@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-07-12 02:56:45 +0000 |
commit | 5e58c22e8bcc58987a2884430135c015a2aef2b0 (patch) | |
tree | e64a8539a9959ca2bf64518552e47818c8b26be2 /gcc/c-aux-info.c | |
parent | d60181b40c3b0e20d34990cfcad70c332ad5001b (diff) | |
download | gcc-5e58c22e8bcc58987a2884430135c015a2aef2b0.tar.gz |
Renamed TREE_INLINE, TREE_NONLOCAL, TREE_REGDECL, TREE_EXTERNAL
to DECL_INLINE, DECL_NONLOCAL, DECL_REGISTER, DECL_EXTERNAL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1569 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-aux-info.c')
-rw-r--r-- | gcc/c-aux-info.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/c-aux-info.c b/gcc/c-aux-info.c index 76b480cdcee..27dad2aba84 100644 --- a/gcc/c-aux-info.c +++ b/gcc/c-aux-info.c @@ -126,12 +126,12 @@ affix_data_type (type_or_decl) for (;;) { - if (!strncmp (p, "volatile", 8)) + if (!strncmp (p, "volatile ", 9)) { p += 9; continue; } - if (!strncmp (p, "const", 5)) + if (!strncmp (p, "const ", 6)) { p += 6; continue; @@ -568,7 +568,7 @@ gen_decl (decl, is_func_definition, style) ret_val = affix_data_type (ret_val); - if (TREE_REGDECL (decl)) + if (DECL_REGISTER (decl)) ret_val = concat ("register ", ret_val); if (TREE_PUBLIC (decl)) ret_val = concat ("extern ", ret_val); |