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
33672562
Commit
33672562
authored
May 03, 1999
by
Craig Burley
Committed by
Craig Burley
May 03, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cope with partial overlap
From-SVN: r26741
parent
a152cad7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
libf2c/ChangeLog
+5
-0
libf2c/libF77/c_log.c
+3
-3
No files found.
libf2c/ChangeLog
View file @
33672562
Mon May 3 11:21:35 1999 Craig Burley <craig@jcb-sc.com>
* libF77/c_log.c: Cope with partial overlap a la z_log.c.
(Change likely to be made to netlib version shortly.)
Mon May 3 11:12:38 1999 Craig Burley <craig@jcb-sc.com>
Mon May 3 11:12:38 1999 Craig Burley <craig@jcb-sc.com>
Update to Netlib version of 1999-05-03:
Update to Netlib version of 1999-05-03:
...
...
libf2c/libF77/c_log.c
View file @
33672562
...
@@ -11,7 +11,7 @@ extern double f__cabs(double, double);
...
@@ -11,7 +11,7 @@ extern double f__cabs(double, double);
void
c_log
(
complex
*
r
,
complex
*
z
)
void
c_log
(
complex
*
r
,
complex
*
z
)
#endif
#endif
{
{
double
zi
;
double
zi
=
z
->
i
,
zr
=
z
->
r
;
r
->
i
=
atan2
(
zi
=
z
->
i
,
z
->
r
);
r
->
i
=
atan2
(
zi
,
z
r
);
r
->
r
=
log
(
f__cabs
(
z
->
r
,
zi
)
);
r
->
r
=
log
(
f__cabs
(
zr
,
zi
)
);
}
}
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