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
55504c7c
Commit
55504c7c
authored
Oct 25, 2011
by
Eric Botcazou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/ia64/ia64.c (ia64_profile_hook): Fix thinko.
From-SVN: r180455
parent
0fd72195
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/ChangeLog
+6
-2
gcc/config/ia64/ia64.c
+1
-1
No files found.
gcc/ChangeLog
View file @
55504c7c
2011
-
10
-
25
Eric
Botcazou
<
ebotcazou
@adacore
.
com
>
*
config
/
ia64
/
ia64
.
c
(
ia64_profile_hook
)
:
Fix
thinko
.
2011
-
10
-
25
Richard
Henderson
<
rth
@redhat
.
com
>
*
config
/
i386
/
sse
.
md
(
VEC_EXTRACT_EVENODD_MODE
)
:
Remove
.
...
...
@@ -54,11 +58,11 @@
(
VEC_EXTRACT_ODD_EXPR
,
VEC_INTERLEAVE_HIGH_EXPR
,
VEC_INTERLEAVE_LOW_EXPR
)
:
Likewise
.
2011
-
10
-
2
1
Mike
Stump
<
mikestump
@comcast
.
net
>
2011
-
10
-
2
5
Mike
Stump
<
mikestump
@comcast
.
net
>
*
reload
.
c
(
regno_clobbered_p
)
:
Fix
typo
.
2011
-
10
-
2
4
Dodji
Seketeli
<
dodji
@redhat
.
com
>
2011
-
10
-
2
5
Dodji
Seketeli
<
dodji
@redhat
.
com
>
*
input
.
c
(
expand_location
)
:
Rewrite
using
linemap_resolve_location
and
linemap_expand_location
.
Add
a
gcc/config/ia64/ia64.c
View file @
55504c7c
...
...
@@ -10716,7 +10716,7 @@ ia64_profile_hook (int labelno)
char
buf
[
30
];
const
char
*
label_name
;
ASM_GENERATE_INTERNAL_LABEL
(
buf
,
"LP"
,
labelno
);
label_name
=
(
*
targetm
.
strip_name_encoding
)
(
ggc_strdup
(
buf
));
label_name
=
ggc_strdup
((
*
targetm
.
strip_name_encoding
)
(
buf
));
label
=
gen_rtx_SYMBOL_REF
(
Pmode
,
label_name
);
SYMBOL_REF_FLAGS
(
label
)
=
SYMBOL_FLAG_LOCAL
;
}
...
...
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