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
47d268d0
Commit
47d268d0
authored
Jul 09, 2008
by
Christian Bruel
Committed by
Christian Bruel
Jul 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
http://gcc.gnu.org/ml/gcc-patches/2008-07/msg00520.html
From-SVN: r137654
parent
8ad97cfc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-0
gcc/final.c
+1
-1
No files found.
gcc/ChangeLog
View file @
47d268d0
2008
-
07
-
09
Christian
Bruel
<
christian
.
bruel
@st
.
com
>
*
final
.
c
(
get_attr_length_1
)
:
Call
get_attr_length_1
with
fallback_fn
instead
of
get_attr_length
.
2008
-
07
-
09
Kaveh
R
.
Ghazi
<
ghazi
@caip
.
rutgers
.
edu
>
*
genattrtab
.
c
(
insert_right_side
,
evaluate_eq_attr
)
:
Avoid
C
++
...
...
gcc/final.c
View file @
47d268d0
...
...
@@ -410,7 +410,7 @@ get_attr_length_1 (rtx insn ATTRIBUTE_UNUSED,
length
=
asm_insn_count
(
body
)
*
fallback_fn
(
insn
);
else
if
(
GET_CODE
(
body
)
==
SEQUENCE
)
for
(
i
=
0
;
i
<
XVECLEN
(
body
,
0
);
i
++
)
length
+=
get_attr_length
(
XVECEXP
(
body
,
0
,
i
)
);
length
+=
get_attr_length
_1
(
XVECEXP
(
body
,
0
,
i
),
fallback_fn
);
else
length
=
fallback_fn
(
insn
);
break
;
...
...
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