aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Nerode <neroden@gcc.gnu.org>2003-07-11 23:01:53 +0000
committerNathanael Nerode <neroden@gcc.gnu.org>2003-07-11 23:01:53 +0000
commite05f79742f986162d925e23e865fae133bd7155b (patch)
tree5e45f532ff7e7c0b2bcfec1f846d912a378cf573
parent783b7a595b751a9ce47c7659a264c1ad1baa558c (diff)
downloadgcc-e05f79742f986162d925e23e865fae133bd7155b.zip
gcc-e05f79742f986162d925e23e865fae133bd7155b.tar.gz
gcc-e05f79742f986162d925e23e865fae133bd7155b.tar.bz2
re PR c++/11437 (ICE in lookup_name_real)
PR c++/11437 * operators.def: Add definitions for __imag__, __real__. From-SVN: r69254
-rw-r--r--gcc/cp/ChangeLog5
-rw-r--r--gcc/cp/operators.def4
2 files changed, 8 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index c91df8e..281f216 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,8 @@
+2003-07-11 Nathanael Nerode <neroden@gcc.gnu.org>
+
+ PR c++/11437
+ * operators.def: Add definitions for __imag__, __real__.
+
2003-07-11 Nathan Sidwell <nathan@codesourcery.com>
PR c++/11050
diff --git a/gcc/cp/operators.def b/gcc/cp/operators.def
index b4de745..16e603d 100644
--- a/gcc/cp/operators.def
+++ b/gcc/cp/operators.def
@@ -93,8 +93,10 @@ DEF_SIMPLE_OPERATOR ("!", TRUTH_NOT_EXPR, "nt", 1)
DEF_SIMPLE_OPERATOR ("++", PREINCREMENT_EXPR, "pp", 1)
DEF_SIMPLE_OPERATOR ("--", PREDECREMENT_EXPR, "mm", 1)
DEF_SIMPLE_OPERATOR ("sizeof", SIZEOF_EXPR, "sz", 1)
-/* This is an extension. */
+/* These are extensions. */
DEF_SIMPLE_OPERATOR ("alignof", ALIGNOF_EXPR, "v17alignof", 1)
+DEF_SIMPLE_OPERATOR ("__imag__", IMAGPART_EXPR, "v18__imag__", 1)
+DEF_SIMPLE_OPERATOR ("__real__", REALPART_EXPR, "v18__real__", 1)
/* The cast operator. */
DEF_SIMPLE_OPERATOR ("", TYPE_EXPR, "cv", 1)