*** empty log message ***
authorRichard Stallman <rms@gnu.org>
Thu, 16 Apr 1992 23:42:27 +0000 (23:42 +0000)
committerRichard Stallman <rms@gnu.org>
Thu, 16 Apr 1992 23:42:27 +0000 (23:42 +0000)
From-SVN: r750

gcc/dbxout.c

index 4d0276a1d11f761d1c5ccdd991a977c228958965..558fb5930f0d2ffb22e4a8a549ef6bfb81bf49e5 100644 (file)
@@ -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