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
57deb3a1
Commit
57deb3a1
authored
Feb 23, 2002
by
Alan Modra
Committed by
David Edelsohn
Feb 22, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Add missing mask_operand patch.
From-SVN: r49984
parent
e72247f4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
gcc/ChangeLog
+1
-0
gcc/config/rs6000/rs6000.c
+5
-0
No files found.
gcc/ChangeLog
View file @
57deb3a1
...
...
@@ -9,6 +9,7 @@
Simplify comparison of `low'.
(add_operand): Fix formatting.
(non_add_cint_operand): Use CONST_OK_FOR_LETTER_P.
(mask_operand): Disallow mask to wrap in 64-bit mode.
(rs6000_stack_info): Remove redundant test setting push_p.
(output_toc): Fix formatting.
* config/rs6000/rs6000.md (boolsi3, boolcsi3 splitters): Use
...
...
gcc/config/rs6000/rs6000.c
View file @
57deb3a1
...
...
@@ -1399,6 +1399,11 @@ mask_operand (op, mode)
c
=
INTVAL
(
op
);
/* Fail in 64-bit mode if the mask wraps around because the upper
32-bits of the mask will all be 1s, contrary to GCC's internal view. */
if
(
TARGET_POWERPC64
&&
(
c
&
0x80000001
)
==
0x80000001
)
return
0
;
/* We don't change the number of transitions by inverting,
so make sure we start with the LS bit zero. */
if
(
c
&
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