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
5f0abdc3
Commit
5f0abdc3
authored
May 01, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(yylex): Avoid invalid shift for erroneous empty char const.
From-SVN: r4292
parent
c141a106
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
gcc/c-lex.c
+5
-2
No files found.
gcc/c-lex.c
View file @
5f0abdc3
...
...
@@ -1847,8 +1847,11 @@ yylex ()
if
(
!
wide_flag
)
{
int
num_bits
=
num_chars
*
width
;
if
(
TREE_UNSIGNED
(
char_type_node
)
||
((
result
>>
(
num_bits
-
1
))
&
1
)
==
0
)
if
(
num_bits
==
0
)
/* We already got an error; avoid invalid shift. */
yylval
.
ttype
=
build_int_2
(
0
,
0
);
else
if
(
TREE_UNSIGNED
(
char_type_node
)
||
((
result
>>
(
num_bits
-
1
))
&
1
)
==
0
)
yylval
.
ttype
=
build_int_2
(
result
&
((
unsigned
HOST_WIDE_INT
)
~
0
>>
(
HOST_BITS_PER_WIDE_INT
-
num_bits
)),
...
...
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