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
29b86a49
Commit
29b86a49
authored
Mar 09, 2005
by
Kazu Hirata
Committed by
Kazu Hirata
Mar 09, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-eh.c (tree_could_trap_p): Remove idx.
From-SVN: r96184
parent
1d846d0d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
gcc/ChangeLog
+2
-0
gcc/tree-eh.c
+1
-2
No files found.
gcc/ChangeLog
View file @
29b86a49
...
...
@@ -22,6 +22,8 @@
* tree-data-ref.c (array_base_name_differ_p): Remove ta and
tb.
* tree-eh.c (tree_could_trap_p): Remove idx.
2005-03-08 Jeff Law <law@redhat.com>
* tree-cfg.c (cleanup_control_flow): If removal of a computed
...
...
gcc/tree-eh.c
View file @
29b86a49
...
...
@@ -1719,7 +1719,7 @@ tree_could_trap_p (tree expr)
bool
honor_snans
=
false
;
bool
fp_operation
=
false
;
bool
honor_trapv
=
false
;
tree
t
,
base
,
idx
;
tree
t
,
base
;
if
(
TREE_CODE_CLASS
(
code
)
==
tcc_comparison
||
TREE_CODE_CLASS
(
code
)
==
tcc_unary
...
...
@@ -1759,7 +1759,6 @@ tree_could_trap_p (tree expr)
case
ARRAY_REF
:
base
=
TREE_OPERAND
(
expr
,
0
);
idx
=
TREE_OPERAND
(
expr
,
1
);
if
(
tree_could_trap_p
(
base
))
return
true
;
...
...
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