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
f71aebba
Commit
f71aebba
authored
23 years ago
by
Neil Booth
Committed by
Neil Booth
23 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cpplib.c (run_directive): Set pfile->directive.
From-SVN: r42661
parent
df9149ee
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+4
-0
gcc/cpplib.c
+2
-1
No files found.
gcc/ChangeLog
View file @
f71aebba
2001
-
05
-
27
Neil
Booth
<
neil
@daikokuya
.
demon
.
co
.
uk
>
*
cpplib
.
c
(
run_directive
)
:
Set
pfile
->
directive
.
2001
-
05
-
23
Theodore
Papadopoulo
<
Theodore
.
Papadopoulo
@sophia
.
inria
.
fr
>
*
c
-
tree
.
texi
:
Reformat
the
manual
as
a
single
chapter
now
...
...
This diff is collapsed.
Click to expand it.
gcc/cpplib.c
View file @
f71aebba
...
...
@@ -422,7 +422,8 @@ run_directive (pfile, dir_no, type, buf, count)
start_directive
(
pfile
);
pfile
->
state
.
prevent_expansion
++
;
(
void
)
(
*
dtable
[
dir_no
].
handler
)
(
pfile
);
pfile
->
directive
=
&
dtable
[
dir_no
];
(
void
)
(
*
pfile
->
directive
->
handler
)
(
pfile
);
pfile
->
state
.
prevent_expansion
--
;
check_eol
(
pfile
);
end_directive
(
pfile
,
1
);
...
...
This diff is collapsed.
Click to expand it.
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