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
b6a75dda
Commit
b6a75dda
authored
Mar 20, 2011
by
Ramana Radhakrishnan
Committed by
Ramana Radhakrishnan
Mar 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PR debug/48203
From-SVN: r171193
parent
b8d42f29
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
gcc/ChangeLog
+6
-0
gcc/config/arm/arm.c
+10
-0
No files found.
gcc/ChangeLog
View file @
b6a75dda
2011-03-20 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
PR debug/48023
* config/arm/arm.c (create_fix_barrier): Do not emit a minipool
between a call and its CALL_ARG_LOCATION note.
2011-03-19 Kaz Kojima <kkojima@gcc.gnu.org>
PR debug/48178
...
...
gcc/config/arm/arm.c
View file @
b6a75dda
...
...
@@ -12022,6 +12022,16 @@ create_fix_barrier (Mfix *fix, HOST_WIDE_INT max_address)
/* Make sure that we found a place to insert the jump. */
gcc_assert
(
selected
);
/* Make sure we do not split a call and its corresponding
CALL_ARG_LOCATION note. */
if
(
CALL_P
(
selected
))
{
rtx
next
=
NEXT_INSN
(
selected
);
if
(
next
&&
NOTE_P
(
next
)
&&
NOTE_KIND
(
next
)
==
NOTE_INSN_CALL_ARG_LOCATION
)
selected
=
next
;
}
/* Create a new JUMP_INSN that branches around a barrier. */
from
=
emit_jump_insn_after
(
gen_jump
(
label
),
selected
);
JUMP_LABEL
(
from
)
=
label
;
...
...
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