From 4a70b59065b081b92b1605d3d1a6975a58317420 Mon Sep 17 00:00:00 2001 From: neroden Date: Fri, 11 Jul 2003 23:01:53 +0000 Subject: PR c++/11437 * operators.def: Add definitions for __imag__, __real__. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69254 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/operators.def | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'gcc/cp') diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index c91df8ebbe7..281f21684e7 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2003-07-11 Nathanael Nerode + + PR c++/11437 + * operators.def: Add definitions for __imag__, __real__. + 2003-07-11 Nathan Sidwell PR c++/11050 diff --git a/gcc/cp/operators.def b/gcc/cp/operators.def index b4de745a154..16e603d31bf 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) -- cgit v1.2.1