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
7a12ace5
Commit
7a12ace5
authored
Nov 25, 1999
by
Mark Mitchell
Committed by
Mark Mitchell
Nov 25, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree.c (unsave_expr_now): Handle NULL_TREE as input.
From-SVN: r30665
parent
caa6ec8d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+4
-0
gcc/tree.c
+4
-0
No files found.
gcc/ChangeLog
View file @
7a12ace5
1999
-
11
-
25
Mark
Mitchell
<
mark
@codesourcery
.
com
>
*
tree
.
c
(
unsave_expr_now
)
:
Handle
NULL_TREE
as
input
.
Wed
Nov
24
17
:
08
:
09
MET
1999
Jan
Hubicka
<
hubicka
@freesoft
.
cz
>
*
reg
-
stack
.
c
(
subst_stack_regs_pat
)
:
Swap
operands
in
commutative
...
...
gcc/tree.c
View file @
7a12ace5
...
...
@@ -2469,6 +2469,10 @@ unsave_expr_now_r (expr)
{
enum
tree_code
code
;
/* There's nothing to do for NULL_TREE. */
if
(
!
expr
)
return
;
unsave_expr_1
(
expr
);
code
=
TREE_CODE
(
expr
);
...
...
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