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
cf0c27ef
Commit
cf0c27ef
authored
Jun 15, 2015
by
Shiva Chen
Committed by
Marcus Shawcroft
Jun 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[AArch64] Change %ld to %wd for HOST_WIDE_INT parameter.
From-SVN: r224476
parent
14c9cbc6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+5
-0
gcc/config/aarch64/aarch64.c
+2
-2
No files found.
gcc/ChangeLog
View file @
cf0c27ef
2015-06-14 Shiva Chen <shiva0217@gmail.com>
* aarch64.c (aarch64_simd_lane_bounds): Change %ld to %wd for
HOST_WIDE_INT parameter.
2015-06-14 Jan Hubicka <hubicka@ucw.cz>
PR ipa/66181
...
...
gcc/config/aarch64/aarch64.c
View file @
cf0c27ef
...
...
@@ -8890,9 +8890,9 @@ aarch64_simd_lane_bounds (rtx operand, HOST_WIDE_INT low, HOST_WIDE_INT high,
if
(
lane
<
low
||
lane
>=
high
)
{
if
(
exp
)
error
(
"%Klane %
ld out of range %ld - %l
d"
,
exp
,
lane
,
low
,
high
-
1
);
error
(
"%Klane %
wd out of range %wd - %w
d"
,
exp
,
lane
,
low
,
high
-
1
);
else
error
(
"lane %
ld out of range %ld - %l
d"
,
lane
,
low
,
high
-
1
);
error
(
"lane %
wd out of range %wd - %w
d"
,
lane
,
low
,
high
-
1
);
}
}
...
...
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