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
f3b55474
Commit
f3b55474
authored
Nov 29, 2000
by
Neil Booth
Committed by
Neil Booth
Nov 29, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-pragma.c (init_pragma): Update for parse_in type change.
From-SVN: r37853
parent
b86ecfa9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
gcc/ChangeLog
+4
-0
gcc/c-pragma.c
+3
-6
No files found.
gcc/ChangeLog
View file @
f3b55474
2000-11-29 Neil Booth <neilb@earthling.net>
* c-pragma.c (init_pragma): Update for parse_in type change.
2000-11-29 Laurynas Biveinis <lauras@softhome.net>
* configure.in: recognize DOS-style absolute paths.
...
...
gcc/c-pragma.c
View file @
f3b55474
...
...
@@ -304,17 +304,14 @@ handle_pragma_weak (dummy)
void
init_pragma
()
{
cpp_reader
*
pfile
ATTRIBUTE_UNUSED
;
pfile
=
&
parse_in
;
#ifdef HANDLE_PRAGMA_PACK
cpp_register_pragma
(
p
file
,
0
,
"pack"
,
handle_pragma_pack
);
cpp_register_pragma
(
p
arse_in
,
0
,
"pack"
,
handle_pragma_pack
);
#endif
#ifdef HANDLE_PRAGMA_WEAK
cpp_register_pragma
(
p
file
,
0
,
"weak"
,
handle_pragma_weak
);
cpp_register_pragma
(
p
arse_in
,
0
,
"weak"
,
handle_pragma_weak
);
#endif
#ifdef REGISTER_TARGET_PRAGMAS
REGISTER_TARGET_PRAGMAS
(
p
file
);
REGISTER_TARGET_PRAGMAS
(
p
arse_in
);
#endif
#ifdef HANDLE_PRAGMA_PACK_PUSH_POP
...
...
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