Commit ff29fd00 by Mark Mitchell

Commit files missed with last commit.

From-SVN: r18796
parent 050367a3
......@@ -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.
......
......@@ -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 ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment