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
c38cdd3f
Commit
c38cdd3f
authored
Nov 12, 2012
by
Eric Botcazou
Committed by
Eric Botcazou
Nov 12, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-ssa-ccp.c (dump_lattice_value) <CONSTANT>: Fix duplication.
From-SVN: r193459
parent
0ad9f930
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/ChangeLog
+4
-0
gcc/tree-ssa-ccp.c
+4
-2
No files found.
gcc/ChangeLog
View file @
c38cdd3f
2012
-
11
-
12
Eric
Botcazou
<
ebotcazou
@adacore
.
com
>
*
tree
-
ssa
-
ccp
.
c
(
dump_lattice_value
)
<
CONSTANT
>:
Fix
duplication
.
2012
-
11
-
12
Eric
Botcazou
<
ebotcazou
@adacore
.
com
>
*
common
.
opt
(
fvar
-
tracking
-
uninit
)
:
Document
.
*
toplev
.
c
(
process_options
)
:
Fix
handling
of
flag_var_tracking_uninit
.
*
config
/
darwin
.
c
(
darwin_override_options
)
:
Likewise
.
gcc/tree-ssa-ccp.c
View file @
c38cdd3f
...
...
@@ -184,10 +184,12 @@ dump_lattice_value (FILE *outf, const char *prefix, prop_value_t val)
fprintf
(
outf
,
"%sVARYING"
,
prefix
);
break
;
case
CONSTANT
:
fprintf
(
outf
,
"%sCONSTANT "
,
prefix
);
if
(
TREE_CODE
(
val
.
value
)
!=
INTEGER_CST
||
val
.
mask
.
is_zero
())
print_generic_expr
(
outf
,
val
.
value
,
dump_flags
);
{
fprintf
(
outf
,
"%sCONSTANT "
,
prefix
);
print_generic_expr
(
outf
,
val
.
value
,
dump_flags
);
}
else
{
double_int
cval
=
tree_to_double_int
(
val
.
value
).
and_not
(
val
.
mask
);
...
...
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