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
11bca309
Commit
11bca309
authored
Mar 16, 2001
by
Alexandre Oliva
Committed by
Alexandre Oliva
Mar 16, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cppfiles.c (stack_include_file): Use MAX of sysp.
From-SVN: r40536
parent
69ca5554
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/cppfiles.c
+2
-2
No files found.
gcc/ChangeLog
View file @
11bca309
2001-03-16 Alexandre Oliva <aoliva@redhat.com>
* cppfiles.c (stack_include_file): Use MAX of sysp.
2001-03-15 Steve Ellcey <sje@cup.hp.com>
* config.gcc (ia64*-*-hpux*): New case.
...
...
gcc/cppfiles.c
View file @
11bca309
...
...
@@ -277,8 +277,8 @@ stack_include_file (pfile, inc)
/* We'll try removing deps_sysp after the release of 3.0. */
deps_sysp
=
pfile
->
system_include_depth
!=
0
;
sysp
=
((
pfile
->
buffer
&&
pfile
->
buffer
->
sysp
)
||
(
inc
->
foundhere
&&
inc
->
foundhere
->
sysp
));
sysp
=
MAX
((
pfile
->
buffer
?
pfile
->
buffer
->
sysp
:
0
),
(
inc
->
foundhere
?
inc
->
foundhere
->
sysp
:
0
));
/* For -M, add the file to the dependencies on its first inclusion. */
if
(
CPP_OPTION
(
pfile
,
print_deps
)
>
deps_sysp
&&
!
inc
->
include_count
)
...
...
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