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
c9fff01f
Commit
c9fff01f
authored
Apr 05, 2000
by
Jan Hubicka
Committed by
Jan Hubicka
Apr 05, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix problems in my previous commit.
From-SVN: r32930
parent
3ea0387c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/cp/ChangeLog
+5
-0
gcc/cp/optimize.c
+1
-1
No files found.
gcc/cp/ChangeLog
View file @
c9fff01f
Wed Apr 5 15:12:18 MET DST 2000 Jan Hubicka <jh@suse.cz>
* optimize.c (calls_setjmp_r): Use setjmp_call_p instead of
special_function_p.
2000-04-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2000-04-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* cfns.gperf (hash, libc_name_p): Prototype.
* cfns.gperf (hash, libc_name_p): Prototype.
...
...
gcc/cp/optimize.c
View file @
c9fff01f
...
@@ -752,7 +752,7 @@ calls_setjmp_r (tp, walk_subtrees, data)
...
@@ -752,7 +752,7 @@ calls_setjmp_r (tp, walk_subtrees, data)
if
(
TREE_CODE
(
*
tp
)
!=
FUNCTION_DECL
)
if
(
TREE_CODE
(
*
tp
)
!=
FUNCTION_DECL
)
return
NULL_TREE
;
return
NULL_TREE
;
return
setjmp_call_p
(
*
tp
);
return
setjmp_call_p
(
*
tp
)
?
*
tp
:
NULL_TREE
;
}
}
/* Returns non-zero if FN calls `setjmp' or some other function that
/* Returns non-zero if FN calls `setjmp' or some other function that
...
...
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