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. ...@@ -1746,6 +1746,9 @@ Indicates a C++ array type.
Encodes the C++ @code{bool} type, Encodes the C++ @code{bool} type,
and the Java @code{boolean} type. and the Java @code{boolean} type.
@item B
Used for squangling.
@item c @item c
Encodes the C++ @code{char} type, and the Java @code{byte} type. Encodes the C++ @code{char} type, and the Java @code{byte} type.
...@@ -1760,6 +1763,9 @@ Encodes the C++ and Java @code{double} types. ...@@ -1760,6 +1763,9 @@ Encodes the C++ and Java @code{double} types.
@item e @item e
Indicates extra unknown arguments @code{...}. Indicates extra unknown arguments @code{...}.
@item E
Indicates the opening parenthesis of an expression.
@item f @item f
Encodes the C++ and Java @code{float} types. Encodes the C++ and Java @code{float} types.
...@@ -1775,6 +1781,9 @@ Encodes the C++ and Java @code{int} types. ...@@ -1775,6 +1781,9 @@ Encodes the C++ and Java @code{int} types.
@item J @item J
Indicates a complex type. Indicates a complex type.
@item K
Used for squangling.
@item l @item l
Encodes the C++ @code{long} type. Encodes the C++ @code{long} type.
...@@ -1821,6 +1830,9 @@ A modified for a @code{const} type or method. ...@@ -1821,6 +1830,9 @@ A modified for a @code{const} type or method.
@item w @item w
Encodes the C++ @code{wchar_t} type, and the Java @code{char} types. Encodes the C++ @code{wchar_t} type, and the Java @code{char} types.
@item W
Indicates the closing parenthesis of an expression.
@item x @item x
Encodes the GNU C++ @code{long long} type, and the Java @code{long} type. Encodes the GNU C++ @code{long long} type, and the Java @code{long} type.
......
...@@ -615,6 +615,8 @@ init_lex () ...@@ -615,6 +615,8 @@ init_lex ()
IDENTIFIER_OPNAME_P (ansi_opname[(int) MAX_EXPR]) = 1; IDENTIFIER_OPNAME_P (ansi_opname[(int) MAX_EXPR]) = 1;
ansi_opname[(int) COND_EXPR] = get_identifier ("__cn"); ansi_opname[(int) COND_EXPR] = get_identifier ("__cn");
IDENTIFIER_OPNAME_P (ansi_opname[(int) COND_EXPR]) = 1; 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_method ();
init_error (); 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