Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
5379f4a4
Commit
5379f4a4
authored
Jul 25, 1999
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rebuild.
From-SVN: r28244
parent
d3707adb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
gcc/objc/objc-parse.c
+0
-0
gcc/objc/objc-parse.y
+3
-1
No files found.
gcc/objc/objc-parse.c
View file @
5379f4a4
This source diff could not be displayed because it is too large. You can
view the blob
instead.
gcc/objc/objc-parse.y
View file @
5379f4a4
...
...
@@ -102,7 +102,7 @@ char *language_string = "GNU Obj-C";
%
token
SIZEOF
ENUM
STRUCT
UNION
IF
ELSE
WHILE
DO
FOR
SWITCH
CASE
DEFAULT
%
token
BREAK
CONTINUE
RETURN
GOTO
ASM_KEYWORD
TYPEOF
ALIGNOF
%
token
ATTRIBUTE
EXTENSION
LABEL
%
token
REALPART
IMAGPART
%
token
REALPART
IMAGPART
VA_ARG
/* Add precedence rules to solve dangling else s/r conflict */
%
nonassoc
IF
...
...
@@ -458,6 +458,8 @@ unary_expr:
{
$$
=
build_unary_op
(
REALPART_EXPR
,
$
2
,
0
);
}
|
IMAGPART
cast_expr
%
prec
UNARY
{
$$
=
build_unary_op
(
IMAGPART_EXPR
,
$
2
,
0
);
}
|
VA_ARG
'('
expr_no_commas
','
typename
')'
{
$$
=
build_va_arg
(
$
3
,
groktypename
(
$
5
));
}
;
sizeof
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment