aboutsummaryrefslogtreecommitdiff
path: root/gcc/sdbout.c
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-07-12 02:43:19 +0000
committerRichard Stallman <rms@gnu.org>1992-07-12 02:43:19 +0000
commit216d5cdd139f96ada2303beb77b8174e27fddcd5 (patch)
tree51deebdef0988bfe6a2211cda81b6a0889617995 /gcc/sdbout.c
parent44fe2e801cd57019e45cb0e66fd9ba6e4a8e18b2 (diff)
downloadgcc-216d5cdd139f96ada2303beb77b8174e27fddcd5.zip
gcc-216d5cdd139f96ada2303beb77b8174e27fddcd5.tar.gz
gcc-216d5cdd139f96ada2303beb77b8174e27fddcd5.tar.bz2
*** empty log message ***
From-SVN: r1566
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r--gcc/sdbout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c
index 3e5a6ff..b95b1c2 100644
--- a/gcc/sdbout.c
+++ b/gcc/sdbout.c
@@ -616,7 +616,7 @@ sdbout_symbol (decl, local)
context = decl_function_context (decl);
if (context == current_function_decl)
return;
- if (TREE_EXTERNAL (decl))
+ if (DECL_EXTERNAL (decl))
return;
if (GET_CODE (DECL_RTL (decl)) != MEM
|| GET_CODE (XEXP (DECL_RTL (decl), 0)) != SYMBOL_REF)
@@ -646,7 +646,7 @@ sdbout_symbol (decl, local)
case VAR_DECL:
/* Don't mention a variable that is external.
Let the file that defines it describe it. */
- if (TREE_EXTERNAL (decl))
+ if (DECL_EXTERNAL (decl))
return;
/* Ignore __FUNCTION__, etc. */