]> gcc.gnu.org Git - gcc.git/commitdiff
Commit files missed with last commit.
authorMark Mitchell <mmitchel@gcc.gnu.org>
Tue, 24 Mar 1998 10:34:35 +0000 (10:34 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Tue, 24 Mar 1998 10:34:35 +0000 (10:34 +0000)
From-SVN: r18796

gcc/cp/gxxint.texi
gcc/cp/lex.c

index 08ab917d551c5f09d195d964f3d2173f3d1cd837..6527d08fc26cb362a529251d989c497b217780a4 100644 (file)
@@ -1746,6 +1746,9 @@ Indicates a C++ array type.
 Encodes the C++ @code{bool} type,
 and the Java @code{boolean} type.
 
+@item B
+Used for squangling.
+
 @item c
 Encodes the C++ @code{char} type, and the Java @code{byte} type.
 
@@ -1760,6 +1763,9 @@ Encodes the C++ and Java @code{double} types.
 @item e
 Indicates extra unknown arguments @code{...}.
 
+@item E
+Indicates the opening parenthesis of an expression.
+
 @item f
 Encodes the C++ and Java @code{float} types.
 
@@ -1775,6 +1781,9 @@ Encodes the C++ and Java @code{int} types.
 @item J
 Indicates a complex type.
 
+@item K
+Used for squangling.
+
 @item l
 Encodes the C++ @code{long} type.
 
@@ -1821,6 +1830,9 @@ A modified for a @code{const} type or method.
 @item w
 Encodes the C++ @code{wchar_t} type, and the Java @code{char} types.
 
+@item W
+Indicates the closing parenthesis of an expression.
+
 @item x
 Encodes the GNU C++ @code{long long} type, and the Java @code{long} type.
 
index d4c5bbec9f588f34f67b1388ce0375cd0b7c8209..719a1caac946ed4bcb21bed5e972ec46e02e0ea7 100644 (file)
@@ -615,6 +615,8 @@ init_lex ()
   IDENTIFIER_OPNAME_P (ansi_opname[(int) MAX_EXPR]) = 1;
   ansi_opname[(int) COND_EXPR] = get_identifier ("__cn");
   IDENTIFIER_OPNAME_P (ansi_opname[(int) COND_EXPR]) = 1;
+  ansi_opname[(int) SIZEOF_EXPR] = get_identifier ("__sz");
+  IDENTIFIER_OPNAME_P (ansi_opname[(int) SIZEOF_EXPR]) = 1;
 
   init_method ();
   init_error ();
This page took 0.06339 seconds and 5 git commands to generate.