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
4082292a
Commit
4082292a
authored
Feb 16, 2000
by
Alexandre Oliva
Committed by
Alexandre Oliva
Feb 16, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-lex.c (readescape): Warn about 'x', but do not reject it.
From-SVN: r32005
parent
3ea8083f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
+8
-1
gcc/ChangeLog
+4
-0
gcc/c-lex.c
+4
-1
No files found.
gcc/ChangeLog
View file @
4082292a
2000
-
02
-
16
Alexandre
Oliva
<
oliva
@lsd
.
ic
.
unicamp
.
br
>
*
c
-
lex
.
c
(
readescape
)
:
Warn
about
'\x'
,
but
do
not
reject
it
.
2000
-
02
-
15
Jonathan
Larmour
<
jlarmour
@redhat
.
co
.
uk
>
*
gcc
.
c
(
default_compilers
)
:
Add
new
__GNUC_PATCHLEVEL__
define
...
...
gcc/c-lex.c
View file @
4082292a
...
...
@@ -942,7 +942,10 @@ readescape (ignore_ptr)
nonnull
=
1
;
}
if
(
!
nonnull
)
error
(
"
\\
x used with no following hex digits"
);
{
warning
(
"
\\
x used with no following hex digits"
);
return
'x'
;
}
else
if
(
count
==
0
)
/* Digits are all 0's. Ok. */
;
...
...
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