aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorScott Snyder <snyder@fnal.gov>2003-11-20 08:52:48 +0000
committerJim Wilson <wilson@gcc.gnu.org>2003-11-20 00:52:48 -0800
commit371e8c4f52b053f5920d36482d650d70b7e592c1 (patch)
tree53612afc07681169f05c05b1699ab61578b0b857 /gcc
parent2b49e0aaff141c46314105c24381ae444d37cfe7 (diff)
downloadgcc-371e8c4f52b053f5920d36482d650d70b7e592c1.zip
gcc-371e8c4f52b053f5920d36482d650d70b7e592c1.tar.gz
gcc-371e8c4f52b053f5920d36482d650d70b7e592c1.tar.bz2
re PR target/13131 (internal compiler error: in AT_flag, at dwarf2out.c:4480)
PR target/13131 * dwarf2out.c (gen_array_type_die): DW_AT_declaration should be a flag, not a constant. From-SVN: r73756
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/dwarf2out.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1a82222..55e618e 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2003-11-19 Scott Snyder <snyder@fnal.gov>
+
+ PR target/13131
+ * dwarf2out.c (gen_array_type_die): DW_AT_declaration should be a
+ flag, not a constant.
+
2003-11-19 Kelley Cook <kcook@gcc.gnu.org>
* config/arc/arc-protos.h: Update to C90 prototypes.
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 7db1621..972ad7c 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -10200,7 +10200,7 @@ gen_array_type_die (tree type, dw_die_ref context_die)
/* The SGI compilers handle arrays of unknown bound by setting
AT_declaration and not emitting any subrange DIEs. */
if (! TYPE_DOMAIN (type))
- add_AT_unsigned (array_die, DW_AT_declaration, 1);
+ add_AT_flag (array_die, DW_AT_declaration, 1);
else
#endif
add_subscript_info (array_die, type);