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
bec02c18
Commit
bec02c18
authored
Jun 23, 2010
by
Joern Rennecke
Committed by
Joern Rennecke
Jun 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/spu/spu.c (ea_load_store_inline): Use add_reg_note.
From-SVN: r161275
parent
82c0295a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
gcc/ChangeLog
+2
-0
gcc/config/spu/spu.c
+1
-2
No files found.
gcc/ChangeLog
View file @
bec02c18
...
...
@@ -6,6 +6,8 @@
(spu_handle_vector_attribute, spu_pass_by_reference): Likewise.
(spu_rtx_costs, spu_function_ok_for_sibcall): Likewise.
* config/spu/spu.c (ea_load_store_inline): Use add_reg_note.
2010-06-23 Arnaud Charlet <charlet@adacore.com
PR ada/22220
...
...
gcc/config/spu/spu.c
View file @
bec02c18
...
...
@@ -4488,8 +4488,7 @@ ea_load_store_inline (rtx mem, bool is_store, rtx ea_addr, rtx data_addr)
hit_ref
,
pc_rtx
)));
/* Say that this branch is very likely to happen. */
v
=
REG_BR_PROB_BASE
-
REG_BR_PROB_BASE
/
100
-
1
;
REG_NOTES
(
insn
)
=
gen_rtx_EXPR_LIST
(
REG_BR_PROB
,
GEN_INT
(
v
),
REG_NOTES
(
insn
));
add_reg_note
(
insn
,
REG_BR_PROB
,
GEN_INT
(
v
));
ea_load_store
(
mem
,
is_store
,
ea_addr
,
data_addr
);
cont_label
=
gen_label_rtx
();
...
...
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