summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2001-03-16 06:34:17 +0000
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>2001-03-16 06:34:17 +0000
commitff12286a48e6e508db160333513446ff42883ff0 (patch)
tree3062141140229c081f1727a2b883a5bf5e7053c5
parent2a3fc102ae090ac3ca263d54d25e8b98dad8bdbd (diff)
downloadppe42-gcc-ff12286a48e6e508db160333513446ff42883ff0.tar.gz
ppe42-gcc-ff12286a48e6e508db160333513446ff42883ff0.zip
* dwarf2out.c (rtl_for_decl_location): Use DECL_RTL_IF_SET.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40544 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/dwarf2out.c2
-rw-r--r--gcc/testsuite/g++.old-deja/g++.other/debug7.C11
3 files changed, 16 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index bbb6c585de9..dc25aaddf61 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2001-03-15 Mark Mitchell <mark@codesourcery.com>
+
+ * dwarf2out.c (rtl_for_decl_location): Use DECL_RTL_IF_SET.
+
2001-03-15 Richard Henderson <rth@redhat.com>
* config/ia64/ia64.h (ASM_OUTPUT_DWARF_OFFSET): New.
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 6f0ae8add4b..c5dbcd306a1 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -7983,7 +7983,7 @@ rtl_for_decl_location (decl)
gets fixed). */
/* Use DECL_RTL as the "location" unless we find something better. */
- rtl = DECL_RTL (decl);
+ rtl = DECL_RTL_IF_SET (decl);
if (TREE_CODE (decl) == PARM_DECL)
{
diff --git a/gcc/testsuite/g++.old-deja/g++.other/debug7.C b/gcc/testsuite/g++.old-deja/g++.other/debug7.C
new file mode 100644
index 00000000000..f79b00a9cc7
--- /dev/null
+++ b/gcc/testsuite/g++.old-deja/g++.other/debug7.C
@@ -0,0 +1,11 @@
+// Build don't run:
+// Origin: Loren James Rittle <rittle@latour.rsch.comm.mot.com>
+// Special g++ Options: -g -O2
+
+namespace std {
+ const int __stl_chunk_size = 7;
+};
+
+int main ()
+{
+}
OpenPOWER on IntegriCloud