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
01656b25
Commit
01656b25
authored
Apr 26, 1999
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update.
From-SVN: r26649
parent
5dadc304
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
5 deletions
+15
-5
gcc/objc/objc-parse.c
+0
-0
gcc/objc/objc-parse.y
+15
-5
No files found.
gcc/objc/objc-parse.c
View file @
01656b25
This diff is collapsed.
Click to expand it.
gcc/objc/objc-parse.y
View file @
01656b25
/*WARNING: This file is automatically generated!*/
/* YACC parser for C syntax and for Objective C. -*-c-*-
Copyright (C) 1987, 88, 89, 92-9
7, 1998
Free Software Foundation, Inc.
Copyright (C) 1987, 88, 89, 92-9
8, 1999
Free Software Foundation, Inc.
This file is part of GNU CC.
...
...
@@ -562,12 +562,22 @@ expr_no_commas:
{
skip_evaluation
-=
$
1
==
boolean_true_node
;
$$
=
build_conditional_expr
(
$
1
,
$
<
ttype
>
2
,
$
5
);
}
|
expr_no_commas
'='
expr_no_commas
{
$$
=
build_modify_expr
(
$
1
,
NOP_EXPR
,
$
3
);
C_SET_EXP_ORIGINAL_CODE
(
$$
,
MODIFY_EXPR
);
}
{
char
class
;
$$
=
build_modify_expr
(
$
1
,
NOP_EXPR
,
$
3
);
class
=
TREE_CODE_CLASS
(
TREE_CODE
(
$$
));
if
(
class
==
'e'
||
class
==
'1'
||
class
==
'2'
||
class
==
'<'
)
C_SET_EXP_ORIGINAL_CODE
(
$$
,
MODIFY_EXPR
);
}
|
expr_no_commas
ASSIGN
expr_no_commas
{
$$
=
build_modify_expr
(
$
1
,
$
2
,
$
3
);
{
char
class
;
$$
=
build_modify_expr
(
$
1
,
$
2
,
$
3
);
/* This inhibits warnings in truthvalue_conversion. */
C_SET_EXP_ORIGINAL_CODE
(
$$
,
ERROR_MARK
);
}
class
=
TREE_CODE_CLASS
(
TREE_CODE
(
$$
));
if
(
class
==
'e'
||
class
==
'1'
||
class
==
'2'
||
class
==
'<'
)
C_SET_EXP_ORIGINAL_CODE
(
$$
,
ERROR_MARK
);
}
;
primary
:
...
...
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