diff options
author | Richard Stallman <rms@gnu.org> | 1992-07-12 02:56:45 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-07-12 02:56:45 +0000 |
commit | 1394aabdaac22e52aec22bc95c2202cb71749b4e (patch) | |
tree | e64a8539a9959ca2bf64518552e47818c8b26be2 /gcc/c-aux-info.c | |
parent | a82ad57075803763e50a2fc4411086132dce9c7d (diff) | |
download | gcc-1394aabdaac22e52aec22bc95c2202cb71749b4e.zip gcc-1394aabdaac22e52aec22bc95c2202cb71749b4e.tar.gz gcc-1394aabdaac22e52aec22bc95c2202cb71749b4e.tar.bz2 |
Renamed TREE_INLINE...
Renamed TREE_INLINE, TREE_NONLOCAL, TREE_REGDECL, TREE_EXTERNAL
to DECL_INLINE, DECL_NONLOCAL, DECL_REGISTER, DECL_EXTERNAL.
From-SVN: r1569
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 76b480c..27dad2a 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); |