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
da52a069
Commit
da52a069
authored
Feb 11, 2003
by
Roger Sayle
Committed by
Roger Sayle
Feb 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* builtins.c: Fix failures caused by commit of the wrong patch.
From-SVN: r62727
parent
d58f6584
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ChangeLog
+4
-0
gcc/builtins.c
+5
-3
No files found.
gcc/ChangeLog
View file @
da52a069
2003
-
02
-
11
Roger
Sayle
<
roger
@eyesopen
.
com
>
*
builtins
.
c
:
Fix
failure
caused
by
commiting
wrong
patch
.
2003
-
02
-
11
Dale
Johannesen
<
dalej
@apple
.
com
>
2003
-
02
-
11
Dale
Johannesen
<
dalej
@apple
.
com
>
*
ra
-
build
.
c
(
compare_and_free_webs
)
:
Relax
checking
.
*
ra
-
build
.
c
(
compare_and_free_webs
)
:
Relax
checking
.
*
config
/
rs6000
/
darwin
.
h
(
HOT_TEXT_SECTION_NAME
)
:
Define
.
*
config
/
rs6000
/
darwin
.
h
(
HOT_TEXT_SECTION_NAME
)
:
Define
.
...
...
gcc/builtins.c
View file @
da52a069
...
@@ -1668,7 +1668,7 @@ expand_errno_check (exp, target)
...
@@ -1668,7 +1668,7 @@ expand_errno_check (exp, target)
{
{
rtx
lab
;
rtx
lab
;
if
(
flag_errno_math
&&
errno_set
&&
HONOR_NANS
(
GET_MODE
(
target
)))
if
(
flag_errno_math
&&
HONOR_NANS
(
GET_MODE
(
target
)))
{
{
lab
=
gen_label_rtx
();
lab
=
gen_label_rtx
();
...
@@ -1806,7 +1806,8 @@ expand_builtin_mathfn (exp, target, subtarget)
...
@@ -1806,7 +1806,8 @@ expand_builtin_mathfn (exp, target, subtarget)
return
0
;
return
0
;
}
}
expand_errno_check
(
exp
,
target
);
if
(
errno_set
)
expand_errno_check
(
exp
,
target
);
/* Output the entire sequence. */
/* Output the entire sequence. */
insns
=
get_insns
();
insns
=
get_insns
();
...
@@ -1903,7 +1904,8 @@ expand_builtin_mathfn_2 (exp, target, subtarget)
...
@@ -1903,7 +1904,8 @@ expand_builtin_mathfn_2 (exp, target, subtarget)
return
0
;
return
0
;
}
}
expand_errno_check
(
exp
,
target
);
if
(
errno_set
)
expand_errno_check
(
exp
,
target
);
/* Output the entire sequence. */
/* Output the entire sequence. */
insns
=
get_insns
();
insns
=
get_insns
();
...
...
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