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
e47f8bba
Commit
e47f8bba
authored
Apr 10, 2008
by
Ben Elliston
Committed by
Ben Elliston
Apr 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/spu/spu.c (spu_init_builtins): Mark builtins as nothrow.
From-SVN: r134181
parent
4394b61e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ChangeLog
+4
-0
gcc/config/spu/spu.c
+5
-3
No files found.
gcc/ChangeLog
View file @
e47f8bba
2008-04-11 Ben Elliston <bje@au.ibm.com>
* config/spu/spu.c (spu_init_builtins): Mark builtins as nothrow.
2008-04-10 Rafael Espindola <espindola@google.com>
* gcc/tree-vrp.c (extract_range_from_binary_expr): Don't handle
...
...
gcc/config/spu/spu.c
View file @
e47f8bba
...
...
@@ -4518,10 +4518,9 @@ spu_init_builtins (void)
if
(
d
->
name
==
0
)
continue
;
/*
find last parm
*/
/*
Find last parm.
*/
for
(
parm
=
1
;
d
->
parm
[
parm
]
!=
SPU_BTI_END_OF_PARAMS
;
parm
++
)
{
}
;
p
=
void_list_node
;
while
(
parm
>
1
)
...
...
@@ -4535,6 +4534,9 @@ spu_init_builtins (void)
NULL
,
NULL_TREE
);
if
(
d
->
fcode
==
SPU_MASK_FOR_LOAD
)
TREE_READONLY
(
d
->
fndecl
)
=
1
;
/* These builtins don't throw. */
TREE_NOTHROW
(
d
->
fndecl
)
=
1
;
}
}
...
...
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