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
1e0aa44a
Commit
1e0aa44a
authored
May 08, 2005
by
David Edelsohn
Committed by
David Edelsohn
May 07, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/rs6000/rs6000.md (popcount<mode>2): Fix non-C90 constant.
From-SVN: r99377
parent
1e625046
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ChangeLog
+4
-0
gcc/config/rs6000/rs6000.md
+5
-3
No files found.
gcc/ChangeLog
View file @
1e0aa44a
2005-05-07 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.md (popcount<mode>2): Fix non-C90 constant.
2005-05-07 Paul Brook <paul@codesourcery.com>
* Makefile.in: Fix dependencies.
...
...
gcc/config/rs6000/rs6000.md
View file @
1e0aa44a
...
...
@@ -1729,9 +1729,11 @@
{
operands
[
2
]
= gen_reg_rtx (
<MODE>
mode);
operands
[
3
]
= gen_reg_rtx (
<MODE>
mode);
operands
[
4
]
= force_reg (
<MODE>
mode,
<MODE>
mode == SImode
? GEN_INT (0x01010101)
: GEN_INT (0x0101010101010101LL));
operands
[
4
]
= force_reg (
<MODE>
mode,
<MODE>
mode == SImode
? GEN_INT (0x01010101)
: GEN_INT ((HOST_WIDE_INT)
0x01010101 << 32 | 0x01010101));
operands
[
5
]
= GEN_INT (GET_MODE_BITSIZE (
<MODE>
mode) - 8);
})
...
...
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