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
df6872b7
Commit
df6872b7
authored
Mar 14, 2006
by
Kazu Hirata
Committed by
Kazu Hirata
Mar 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* combine.c (UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD): Remove.
From-SVN: r112062
parent
02433683
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
gcc/ChangeLog
+2
-0
gcc/combine.c
+0
-6
No files found.
gcc/ChangeLog
View file @
df6872b7
...
@@ -12,6 +12,8 @@
...
@@ -12,6 +12,8 @@
*
config
/
bfin
/
bfin
.
h
(
UNALIGNED_WORD_ASM_OP
)
:
Remove
.
*
config
/
bfin
/
bfin
.
h
(
UNALIGNED_WORD_ASM_OP
)
:
Remove
.
*
system
.
h
(
UNALIGNED_WORD_ASM_OP
)
:
Poison
.
*
system
.
h
(
UNALIGNED_WORD_ASM_OP
)
:
Poison
.
*
combine
.
c
(
UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD
)
:
Remove
.
2006
-
03
-
14
John
David
Anglin
<
dave
.
anglin
@nrc
-
cnrc
.
gc
.
ca
>
2006
-
03
-
14
John
David
Anglin
<
dave
.
anglin
@nrc
-
cnrc
.
gc
.
ca
>
*
pa
/
pa32
-
linux
.
h
(
CRT_CALL_STATIC_FUNCTION
)
:
Fix
typo
.
*
pa
/
pa32
-
linux
.
h
(
CRT_CALL_STATIC_FUNCTION
)
:
Fix
typo
.
...
...
gcc/combine.c
View file @
df6872b7
...
@@ -139,12 +139,6 @@ static int max_uid_cuid;
...
@@ -139,12 +139,6 @@ static int max_uid_cuid;
#define INSN_CUID(INSN) \
#define INSN_CUID(INSN) \
(INSN_UID (INSN) > max_uid_cuid ? insn_cuid (INSN) : uid_cuid[INSN_UID (INSN)])
(INSN_UID (INSN) > max_uid_cuid ? insn_cuid (INSN) : uid_cuid[INSN_UID (INSN)])
/* In case BITS_PER_WORD == HOST_BITS_PER_WIDE_INT, shifting by
BITS_PER_WORD would invoke undefined behavior. Work around it. */
#define UWIDE_SHIFT_LEFT_BY_BITS_PER_WORD(val) \
(((unsigned HOST_WIDE_INT) (val) << (BITS_PER_WORD - 1)) << 1)
/* Maximum register number, which is the size of the tables below. */
/* Maximum register number, which is the size of the tables below. */
static
unsigned
int
combine_max_regno
;
static
unsigned
int
combine_max_regno
;
...
...
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