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
67926e52
Commit
67926e52
authored
Jul 31, 2001
by
Loren J. Rittle
Committed by
Loren J. Rittle
Jul 31, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/gen-num-limits.cc: Use __LONG_LONG_MAX__.
From-SVN: r44518
parent
ae16bf15
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
libstdc++-v3/ChangeLog
+4
-0
libstdc++-v3/src/gen-num-limits.cc
+2
-2
No files found.
libstdc++-v3/ChangeLog
View file @
67926e52
2001-07-31 Loren J. Rittle <ljrittle@acm.org>
* src/gen-num-limits.cc: Use __LONG_LONG_MAX__.
2001-07-30 Benjamin Kosnik <bkoz@redhat.com>
* configure.target: Remove mips from cpu table.
...
...
libstdc++-v3/src/gen-num-limits.cc
View file @
67926e52
...
...
@@ -373,8 +373,8 @@ DEFINE_EXTREMA(unsigned int, 0, UINT_MAX);
DEFINE_EXTREMA
(
long
,
LONG_MIN
,
LONG_MAX
);
DEFINE_EXTREMA
(
unsigned
long
,
0
,
ULONG_MAX
);
#ifdef _GLIBCPP_USE_LONG_LONG
DEFINE_EXTREMA
(
long
long
,
LONG_LONG_MIN
,
LONG_LONG_MAX
);
DEFINE_EXTREMA
(
unsigned
long
long
,
0
,
ULONG_LONG_MAX
);
DEFINE_EXTREMA
(
long
long
,
(
-
__LONG_LONG_MAX__
-
1
),
__LONG_LONG_MAX__
);
DEFINE_EXTREMA
(
unsigned
long
long
,
0
,
(
__LONG_LONG_MAX__
*
2ULL
+
1
)
);
#endif
DEFINE_EXTREMA
(
float
,
FLT_MIN
,
FLT_MAX
);
DEFINE_EXTREMA
(
double
,
DBL_MIN
,
DBL_MAX
);
...
...
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