diff options
author | Richard Stallman <rms@gnu.org> | 1992-04-16 23:42:27 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-04-16 23:42:27 +0000 |
commit | b113bb3910e5c8e5cb247ceec4720d7723fb1d19 (patch) | |
tree | cd27bba32e165b66435e553709392902b9b2e316 /gcc | |
parent | 8983a18c1d77e944596efd2b897dfd45704f8264 (diff) | |
download | gcc-b113bb3910e5c8e5cb247ceec4720d7723fb1d19.zip gcc-b113bb3910e5c8e5cb247ceec4720d7723fb1d19.tar.gz gcc-b113bb3910e5c8e5cb247ceec4720d7723fb1d19.tar.bz2 |
*** empty log message ***
From-SVN: r750
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/dbxout.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 4d0276a..558fb59 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -1572,7 +1572,8 @@ dbxout_symbol (decl, local) /* Effectively do build_pointer_type, but don't cache this type, since it might be temporary whereas the type it points to might have been saved for inlining. */ - type = make_node (REFERENCE_TYPE); + /* Don't use REFERENCE_TYPE because dbx can't handle that. */ + type = make_node (POINTER_TYPE); TREE_TYPE (type) = TREE_TYPE (decl); } else if (GET_CODE (DECL_RTL (decl)) == MEM |