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
a5b8127e
Commit
a5b8127e
authored
Jun 17, 1998
by
Mark Mitchell
Committed by
Mark Mitchell
Jun 17, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* errfn.c (cp_thing): Handle the `%%' formatting sequence.
From-SVN: r20537
parent
d460fb3c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
1 deletions
+21
-1
gcc/cp/ChangeLog
+4
-0
gcc/cp/errfn.c
+17
-1
No files found.
gcc/cp/ChangeLog
View file @
a5b8127e
1998-06-17 Mark Mitchell <mark@markmitchell.com>
* errfn.c (cp_thing): Handle the `%%' formatting sequence.
1998-06-17 Jason Merrill <jason@yorick.cygnus.com>
* method.c (hack_identifier): Complain about getting a namespace
...
...
gcc/cp/errfn.c
View file @
a5b8127e
...
...
@@ -50,7 +50,8 @@ extern int cp_line_of PROTO((tree));
#define STRDUP(f) (ap = (char *) alloca (strlen (f) +1), strcpy (ap, (f)), ap)
/* This function supports only `%s', `%d', and the C++ print codes. */
/* This function supports only `%s', `%d', `%%', and the C++ print
codes. */
#ifdef __STDC__
static
void
...
...
@@ -152,6 +153,21 @@ cp_thing (errfn, atarg1, format, ap)
strcpy
(
buf
+
offset
,
p
);
offset
+=
plen
;
}
else
if
(
*
f
==
'%'
)
{
/* A `%%' has occurred in the input string. Since the
string we produce here will be passed to vprintf we must
preserve both `%' characters. */
len
+=
2
;
if
(
len
>
buflen
)
{
buflen
=
len
;
buf
=
xrealloc
(
buf
,
len
);
}
strcpy
(
buf
+
offset
,
"%%"
);
offset
+=
2
;
}
else
{
if
(
*
f
!=
'd'
)
...
...
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