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
ecd36557
Commit
ecd36557
authored
Jul 14, 2000
by
Nathan Sidwell
Committed by
Nathan Sidwell
Jul 14, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cpplib.c (do_pragma_dependency): Tidy warning messages.
From-SVN: r35033
parent
c77a300f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+4
-0
gcc/cpplib.c
+5
-2
No files found.
gcc/ChangeLog
View file @
ecd36557
2000-07-14 Nathan Sidwell <nathan@codesourcery.com>
* cpplib.c (do_pragma_dependency): Tidy warning messages.
2000-07-14 Zack Weinberg <zack@wolery.cumb.org>
* .cvsignore: Correct typo.
...
...
gcc/cpplib.c
View file @
ecd36557
...
...
@@ -879,8 +879,8 @@ do_pragma_dependency (pfile)
{
const
cpp_token
*
msg
=
_cpp_get_token
(
pfile
);
cpp_warning
(
pfile
,
"current file is older than %c%s%c"
,
left
,
name
,
right
);
cpp_warning
(
pfile
,
"current file is older than %c%
.*
s%c"
,
left
,
(
int
)
len
,
name
,
right
);
if
(
msg
->
type
!=
CPP_EOF
)
{
U_CHAR
*
text
,
*
limit
;
...
...
@@ -889,6 +889,9 @@ do_pragma_dependency (pfile)
_cpp_dump_list
(
pfile
,
&
pfile
->
token_list
,
msg
,
0
);
limit
=
pfile
->
limit
;
pfile
->
limit
=
text
;
while
(
*
text
==
' '
)
/* There must be something non-whitespace after. */
text
++
;
cpp_warning
(
pfile
,
"%.*s"
,
(
int
)(
limit
-
text
),
text
);
}
}
...
...
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