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
a120b788
Commit
a120b788
authored
Sep 12, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(yylex): If integer value overflows so highword is negative,
it needs unsigned long long. From-SVN: r2111
parent
9bd23d2c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
gcc/c-lex.c
+2
-0
No files found.
gcc/c-lex.c
View file @
a120b788
...
@@ -1558,6 +1558,8 @@ yylex ()
...
@@ -1558,6 +1558,8 @@ yylex ()
else
if
(
!
spec_long_long
)
else
if
(
!
spec_long_long
)
ansi_type
=
long_unsigned_type_node
;
ansi_type
=
long_unsigned_type_node
;
else
if
(
!
spec_unsigned
else
if
(
!
spec_unsigned
/* Verify value does not overflow into sign bit. */
&&
TREE_INT_CST_HIGH
(
yylval
.
ttype
)
>=
0
&&
int_fits_type_p
(
yylval
.
ttype
,
&&
int_fits_type_p
(
yylval
.
ttype
,
long_long_integer_type_node
))
long_long_integer_type_node
))
ansi_type
=
long_long_integer_type_node
;
ansi_type
=
long_long_integer_type_node
;
...
...
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