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
fef1de5d
Commit
fef1de5d
authored
Dec 02, 2000
by
Neil Booth
Committed by
Neil Booth
Dec 02, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cppexp.c (parse_number): Update diagnostic test.
From-SVN: r37947
parent
88edcc06
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/cppexp.c
+3
-2
No files found.
gcc/ChangeLog
View file @
fef1de5d
2000-12-02 Neil Booth <neilb@earthling.net>
* cppexp.c (parse_number): Update diagnostic test.
2000-12-02 Bernd Schmidt <bernds@redhat.co.uk>
* reload1.c (free_for_value_p): New function, frontend to
...
...
gcc/cppexp.c
View file @
fef1de5d
...
...
@@ -205,8 +205,9 @@ parse_number (pfile, tok)
if
(
CPP_WTRADITIONAL
(
pfile
)
&&
sufftab
[
i
].
u
)
cpp_warning
(
pfile
,
"traditional C rejects the `U' suffix"
);
if
(
sufftab
[
i
].
l
==
2
&&
!
CPP_OPTION
(
pfile
,
extended_numbers
))
SYNTAX_ERROR
(
"too many 'l' suffixes in integer constant"
);
if
(
sufftab
[
i
].
l
==
2
&&
CPP_OPTION
(
pfile
,
pedantic
)
&&
!
CPP_OPTION
(
pfile
,
c99
))
cpp_pedwarn
(
pfile
,
"too many 'l' suffixes in integer constant"
);
}
if
(
base
<=
largest_digit
)
...
...
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