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
d73d4593
Commit
d73d4593
authored
Sep 09, 2004
by
Nathan Sidwell
Committed by
Nathan Sidwell
Sep 09, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-nested.c (create_tmp_var_for): Correct missinverted assert.
From-SVN: r87228
parent
c6614d3e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
gcc/ChangeLog
+2
-0
gcc/tree-nested.c
+1
-1
No files found.
gcc/ChangeLog
View file @
d73d4593
2004
-
09
-
09
Nathan
Sidwell
<
nathan
@
codesourcery
.
com
>
2004
-
09
-
09
Nathan
Sidwell
<
nathan
@
codesourcery
.
com
>
*
tree
-
nested
.
c
(
create_tmp_var_for
):
Correct
missinverted
assert
.
*
tree
-
outof
-
ssa
.
c
(
free_temp_expr_table
):
Add
missed
assert
.
*
tree
-
outof
-
ssa
.
c
(
free_temp_expr_table
):
Add
missed
assert
.
*
tree
-
ssa
-
ccp
.
c
(
set_lattice_value
):
Correct
missapplied
de
*
tree
-
ssa
-
ccp
.
c
(
set_lattice_value
):
Correct
missapplied
de
Morgan
's theorem in last checkin.
Morgan
's theorem in last checkin.
...
...
gcc/tree-nested.c
View file @
d73d4593
...
@@ -135,7 +135,7 @@ create_tmp_var_for (struct nesting_info *info, tree type, const char *prefix)
...
@@ -135,7 +135,7 @@ create_tmp_var_for (struct nesting_info *info, tree type, const char *prefix)
/* If the type is of variable size or a type which must be created by the
/* If the type is of variable size or a type which must be created by the
frontend, something is wrong. Note that we explicitly allow
frontend, something is wrong. Note that we explicitly allow
incomplete types here, since we create them ourselves here. */
incomplete types here, since we create them ourselves here. */
gcc_assert
(
TREE_ADDRESSABLE
(
type
));
gcc_assert
(
!
TREE_ADDRESSABLE
(
type
));
gcc_assert
(
!
TYPE_SIZE_UNIT
(
type
)
gcc_assert
(
!
TYPE_SIZE_UNIT
(
type
)
||
TREE_CODE
(
TYPE_SIZE_UNIT
(
type
))
==
INTEGER_CST
);
||
TREE_CODE
(
TYPE_SIZE_UNIT
(
type
))
==
INTEGER_CST
);
...
...
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