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
772ebeb5
Commit
772ebeb5
authored
Oct 09, 2016
by
Eric Botcazou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gen-pass-instances.awk: Remove GNUism.
From-SVN: r240904
parent
676b4899
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
8 deletions
+11
-8
gcc/ChangeLog
+6
-2
gcc/gen-pass-instances.awk
+5
-6
No files found.
gcc/ChangeLog
View file @
772ebeb5
2016-10-09 Eric Botcazou <ebotcazou@adacore.com>
* gen-pass-instances.awk: Remove GNUism.
2016-10-09 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
2016-10-09 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
* ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to
NULL of
* ipa-prop.c (ipcp_transform_function): Set fields m_vr and bits to
(*ipcp_transformations)][node->uid].
NULL of
(*ipcp_transformations)][node->uid].
2016-10-09 John David Anglin <danglin@gcc.gnu.org>
2016-10-09 John David Anglin <danglin@gcc.gnu.org>
...
...
gcc/gen-pass-instances.awk
View file @
772ebeb5
...
@@ -193,7 +193,6 @@ function replace_pass(line, fnname, num, i)
...
@@ -193,7 +193,6 @@ function replace_pass(line, fnname, num, i)
}
}
END
{
END
{
delete
pass_counts
;
for
(
i
=
1
;
i
<
lineno
;
i
++
)
for
(
i
=
1
;
i
<
lineno
;
i
++
)
{
{
ret
=
parse_line
(
lines
[
i
],
"NEXT_PASS"
);
ret
=
parse_line
(
lines
[
i
],
"NEXT_PASS"
);
...
@@ -203,13 +202,13 @@ END {
...
@@ -203,13 +202,13 @@ END {
pass_name
=
args
[
1
];
pass_name
=
args
[
1
];
with_arg
=
args
[
2
];
with_arg
=
args
[
2
];
# Set pass_counts
# Set pass_
final_
counts
if
(
pass_name
in
pass_counts
)
if
(
pass_name
in
pass_
final_
counts
)
pass_counts
[
pass_name
]
++
;
pass_
final_
counts
[
pass_name
]
++
;
else
else
pass_counts
[
pass_name
]
=
1
;
pass_
final_
counts
[
pass_name
]
=
1
;
pass_num
=
pass_counts
[
pass_name
];
pass_num
=
pass_
final_
counts
[
pass_name
];
# Print call expression with extra pass_num argument
# Print call expression with extra pass_num argument
printf
"%s"
,
prefix
;
printf
"%s"
,
prefix
;
...
...
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