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
55247fce
Commit
55247fce
authored
Aug 24, 1999
by
Philippe De Muyter
Committed by
Jeff Law
Aug 24, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* strtoul.c (strtoul): Add parentheses around && within ||.
From-SVN: r28819
parent
d60eaeff
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
libiberty/ChangeLog
+4
-0
libiberty/strtoul.c
+1
-1
No files found.
libiberty/ChangeLog
View file @
55247fce
Tue Aug 24 02:50:45 1999 Philippe De Muyter <phdm@macqel.be>
* strtoul.c (strtoul): Add parentheses around && within ||.
Fri Aug 6 23:32:29 1999 Daniel Jacobowitz <drow@drow.them.org>
* Makefile.in (FLAGS_TO_PASS): Include prefix, exec_prefix,
...
...
libiberty/strtoul.c
View file @
55247fce
...
...
@@ -91,7 +91,7 @@ strtoul(nptr, endptr, base)
break
;
if
(
c
>=
base
)
break
;
if
(
any
<
0
||
acc
>
cutoff
||
acc
==
cutoff
&&
c
>
cutlim
)
if
(
any
<
0
||
acc
>
cutoff
||
(
acc
==
cutoff
&&
c
>
cutlim
)
)
any
=
-
1
;
else
{
any
=
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