summaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authorrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1992-04-16 23:42:27 +0000
committerrms <rms@138bc75d-0d04-0410-961f-82ee72b054a4>1992-04-16 23:42:27 +0000
commit21a28587df088aaaf3db9b8a81e1998e105d3218 (patch)
treecd27bba32e165b66435e553709392902b9b2e316 /gcc/dbxout.c
parenta057d1613e3f52db7995cf4325af5671cee036b9 (diff)
downloadgcc-21a28587df088aaaf3db9b8a81e1998e105d3218.tar.gz
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@750 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r--gcc/dbxout.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index 4d0276a1d11..558fb5930f0 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