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
1d0f6d89
Commit
1d0f6d89
authored
Sep 10, 2000
by
Richard Henderson
Committed by
Richard Henderson
Sep 10, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-parse.in (asm patterns): Fix volatile check.
From-SVN: r36286
parent
e1aa5140
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+4
-0
gcc/c-parse.in
+3
-3
No files found.
gcc/ChangeLog
View file @
1d0f6d89
2000-09-10 Richard Henderson <rth@cygnus.com>
* c-parse.in (asm patterns): Fix volatile check.
2000-09-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* cppmacro.c (check_trad_stringification): New function.
...
...
gcc/c-parse.in
View file @
1d0f6d89
...
...
@@ -1901,14 +1901,14 @@ stmt:
{
stmt_count
++
;
emit_line_note
(
$
<
filename
>-
1
,
$
<
lineno
>
0
);
c_expand_asm_operands
(
$
4
,
$
6
,
NULL_TREE
,
NULL_TREE
,
$
2
==
ridpointers
[(
int
)
RID_VOLATILE
]
,
$
2
&&
C_RID_CODE
(
$
2
)
==
RID_VOLATILE
,
input_filename
,
lineno
);
}
/* This is the case with input operands as well. */
|
ASM_KEYWORD
maybe_type_qual
'('
expr
':'
asm_operands
':'
asm_operands
')'
';'
{
stmt_count
++
;
emit_line_note
(
$
<
filename
>-
1
,
$
<
lineno
>
0
);
c_expand_asm_operands
(
$
4
,
$
6
,
$
8
,
NULL_TREE
,
$
2
==
ridpointers
[(
int
)
RID_VOLATILE
]
,
$
2
&&
C_RID_CODE
(
$
2
)
==
RID_VOLATILE
,
input_filename
,
lineno
);
}
/* This is the case with clobbered registers as well. */
|
ASM_KEYWORD
maybe_type_qual
'('
expr
':'
asm_operands
':'
...
...
@@ -1916,7 +1916,7 @@ stmt:
{
stmt_count
++
;
emit_line_note
(
$
<
filename
>-
1
,
$
<
lineno
>
0
);
c_expand_asm_operands
(
$
4
,
$
6
,
$
8
,
$
10
,
$
2
==
ridpointers
[(
int
)
RID_VOLATILE
]
,
$
2
&&
C_RID_CODE
(
$
2
)
==
RID_VOLATILE
,
input_filename
,
lineno
);
}
|
GOTO
identifier
';'
{
tree
decl
;
...
...
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