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
efd0b0d3
Commit
efd0b0d3
authored
Nov 16, 2009
by
Alexandre Oliva
Committed by
Alexandre Oliva
Nov 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* stmt.c (expand_asm_stmt): Get locus from stmt.
From-SVN: r154214
parent
f8981d1c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/stmt.c
+3
-2
No files found.
gcc/ChangeLog
View file @
efd0b0d3
2009
-
11
-
16
Alexandre
Oliva
<
aoliva
@
redhat
.
com
>
*
stmt
.
c
(
expand_asm_stmt
):
Get
locus
from
stmt
.
2009
-
11
-
16
Alexandre
Oliva
<
aoliva
@
redhat
.
com
>
*
tree
-
cfg
.
c
(
gimple_redirect_edge_and_branch
)
<
case
GIMPLE_ASM
>:
Create
the
decl
label
for
the
new
dest
block
on
demand
.
Require
a
fallthrough
edge
if
no
asm
labels
were
redirected
.
gcc/stmt.c
View file @
efd0b0d3
...
...
@@ -1099,6 +1099,7 @@ expand_asm_stmt (gimple stmt)
size_t
i
,
n
;
const
char
*
s
;
tree
str
,
out
,
in
,
cl
,
labels
;
location_t
locus
=
gimple_location
(
stmt
);
/* Meh... convert the gimple asm operands into real tree lists.
Eventually we should make all routines work on the vectors instead
...
...
@@ -1144,7 +1145,7 @@ expand_asm_stmt (gimple stmt)
if
(
gimple_asm_input_p
(
stmt
))
{
expand_asm_loc
(
str
,
gimple_asm_volatile_p
(
stmt
),
input_location
);
expand_asm_loc
(
str
,
gimple_asm_volatile_p
(
stmt
),
locus
);
return
;
}
...
...
@@ -1160,7 +1161,7 @@ expand_asm_stmt (gimple stmt)
/* Generate the ASM_OPERANDS insn; store into the TREE_VALUEs of
OUTPUTS some trees for where the values were actually stored. */
expand_asm_operands
(
str
,
outputs
,
in
,
cl
,
labels
,
gimple_asm_volatile_p
(
stmt
),
input_location
);
gimple_asm_volatile_p
(
stmt
),
locus
);
/* Copy all the intermediate outputs into the specified outputs. */
for
(
i
=
0
,
tail
=
outputs
;
tail
;
tail
=
TREE_CHAIN
(
tail
),
i
++
)
...
...
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