diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2005-04-04 12:04:38 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2005-04-04 12:04:38 +0000 |
commit | a7b2272baa0a0663d13d2ec5efa4ba8ab66a7bf7 (patch) | |
tree | f4c32288eaafada3b4d62dc412fae66c78937974 | |
parent | 8785e81a289c06e1671ae9ff58a0150c361a36ac (diff) | |
download | gcc-a7b2272baa0a0663d13d2ec5efa4ba8ab66a7bf7.zip gcc-a7b2272baa0a0663d13d2ec5efa4ba8ab66a7bf7.tar.gz gcc-a7b2272baa0a0663d13d2ec5efa4ba8ab66a7bf7.tar.bz2 |
re PR c++/20505 (internal error when compiling with -ggdb2 and no error with -ggdb1)
PR debug/20505
* g++.dg/debug/const2.C: New.
From-SVN: r97537
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/debug/const2.C | 15 |
2 files changed, 20 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 4abe23e..507f14a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2005-04-04 Nathan Sidwell <nathan@codesourcery.com> + + PR debug/20505 + * g++.dg/debug/const2.C: New. + 2005-04-04 Jakub Jelinek <jakub@redhat.com> PR rtl-optimization/16104 diff --git a/gcc/testsuite/g++.dg/debug/const2.C b/gcc/testsuite/g++.dg/debug/const2.C new file mode 100644 index 0000000..8e98f8b --- /dev/null +++ b/gcc/testsuite/g++.dg/debug/const2.C @@ -0,0 +1,15 @@ +// Copyright (C) 2005 Free Software Foundation, Inc. +// Contributed by Nathan Sidwell 1 Apr 2005 <nathan@codesourcery.com> + +// { dg-options "-ggdb2" } +// Origin: ivan <ivanr@syncad.com> +// pinskia@gcc.gnu.org +// Bug 20505: ICE with -ggdb2 + +struct b +{ + static const int d; + virtual bool IsEmpty() const=0; + int e,c; +}; +const int b::d = ((__SIZE_TYPE__)(&((b*)1)->c) - 1); |