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
c4e861e8
Commit
c4e861e8
authored
Nov 23, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(try_combine, simplify_shift_const): Add initializations for some
uninitialized variables. From-SVN: r6148
parent
d66230e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
gcc/combine.c
+3
-3
No files found.
gcc/combine.c
View file @
c4e861e8
...
...
@@ -1162,7 +1162,7 @@ try_combine (i3, i2, i1)
/* PATTERN (I2), or a copy of it in certain cases. */
rtx
i2pat
;
/* Indicates if I2DEST or I1DEST is in I2SRC or I1_SRC. */
int
i2dest_in_i2src
,
i1dest_in_i1src
=
0
,
i2dest_in_i1src
=
0
;
int
i2dest_in_i2src
=
0
,
i1dest_in_i1src
=
0
,
i2dest_in_i1src
=
0
;
int
i1_feeds_i3
=
0
;
/* Notes that must be added to REG_NOTES in I3 and I2. */
rtx
new_i3_notes
,
new_i2_notes
;
...
...
@@ -1262,7 +1262,7 @@ try_combine (i3, i2, i1)
subst_insn
=
i3
;
subst_low_cuid
=
INSN_CUID
(
i2
);
added_sets_2
=
0
;
added_sets_2
=
added_sets_1
=
0
;
i2dest
=
SET_SRC
(
PATTERN
(
i3
));
/* Replace the dest in I2 with our dest and make the resulting
...
...
@@ -7257,7 +7257,7 @@ simplify_shift_const (x, code, result_mode, varop, count)
=
(
GET_MODE_SIZE
(
mode
)
+
(
UNITS_PER_WORD
-
1
))
/
UNITS_PER_WORD
;
/* We form (outer_op (code varop count) (outer_const)). */
enum
rtx_code
outer_op
=
NIL
;
HOST_WIDE_INT
outer_const
;
HOST_WIDE_INT
outer_const
=
0
;
rtx
const_rtx
;
int
complement_p
=
0
;
rtx
new
;
...
...
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