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
a4299d07
Commit
a4299d07
authored
Jan 11, 2001
by
Neil Booth
Committed by
Neil Booth
Jan 11, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cppinit.c (do_includes): Fix typo.
From-SVN: r38928
parent
76028b1f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-0
gcc/cppinit.c
+1
-1
No files found.
gcc/ChangeLog
View file @
a4299d07
2001-01-11 Neil Booth <neil@daikokuya.demon.co.uk>
* cppinit.c (do_includes): Fix typo.
2001-01-11 Stephane Carrez <Stephane.Carrez@worldnet.fr>
* config/m68hc11/m68hc11.md (cmphi_1): Make sure reloading
...
...
@@ -23,6 +27,7 @@
* cppinit.c (cpp_start_read): If -fpreprocessed, ignore
-D, -U and -A, and don't initialize the builtins.
(do_includes): Error if -include or -imacros with -fpreprocessed.
* cppmain.c (cb_define, cb_undef): Unconditionally process
the callback.
* tradcpp.c (main): Fix typo.
...
...
gcc/cppinit.c
View file @
a4299d07
...
...
@@ -851,7 +851,7 @@ do_includes (pfile, p, scan)
/* Don't handle if -fpreprocessed. Later: maybe update this to
use the #include "" search path if cpp_read_file fails. */
if
(
!
CPP_OPTION
(
pfile
,
preprocessed
))
if
(
CPP_OPTION
(
pfile
,
preprocessed
))
cpp_error
(
pfile
,
"-include and -imacros cannot be used with -fpreprocessed"
);
else
if
(
_cpp_read_file
(
pfile
,
p
->
arg
)
&&
scan
)
cpp_scan_buffer_nooutput
(
pfile
,
0
);
...
...
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