aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@cygnus.com>2000-05-28 13:24:58 +0000
committerAlexandre Oliva <aoliva@gcc.gnu.org>2000-05-28 13:24:58 +0000
commit9193780a0eb4557e075d730dfcb23427dbf44c96 (patch)
treee6e0a60290483cf0a2037dcce5f9bb92520e6c63 /gcc
parent6c2a6a851454dc621d57f02f569c9a066cb3338d (diff)
downloadgcc-9193780a0eb4557e075d730dfcb23427dbf44c96.zip
gcc-9193780a0eb4557e075d730dfcb23427dbf44c96.tar.gz
gcc-9193780a0eb4557e075d730dfcb23427dbf44c96.tar.bz2
operators.def (<?): Duplicated, should have been...
* operators.def (<?): Duplicated, should have been... (>?): this. Fixed. From-SVN: r34232
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cp/ChangeLog5
-rw-r--r--gcc/cp/operators.def2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 08a9bce..fafb15c 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-28 Alexandre Oliva <aoliva@cygnus.com>
+
+ * operators.def (<?): Duplicated, should have been...
+ (>?): this. Fixed.
+
2000-05-27 Alex Samuel <samuel@codesourcery.com>
Mark Mitchell <mark@codesourcery.com>
diff --git a/gcc/cp/operators.def b/gcc/cp/operators.def
index 1ad8d04..5b16b38 100644
--- a/gcc/cp/operators.def
+++ b/gcc/cp/operators.def
@@ -130,7 +130,7 @@ DEF_SIMPLE_OPERATOR ("++", POSTINCREMENT_EXPR, "pp", "__pp", 2)
DEF_SIMPLE_OPERATOR ("--", POSTDECREMENT_EXPR, "mm", "__mm", 2)
/* These are extensions. */
DEF_SIMPLE_OPERATOR ("<?", MIN_EXPR, "vx3min", "__mn", 2)
-DEF_SIMPLE_OPERATOR ("<?", MAX_EXPR, "vx3max", "__mx", 2)
+DEF_SIMPLE_OPERATOR (">?", MAX_EXPR, "vx3max", "__mx", 2)
/* Assignment operators. */
DEF_ASSN_OPERATOR ("=", NOP_EXPR, "aS", "__as", 2)