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
ae34b95d
Commit
ae34b95d
authored
May 08, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r939
parent
92b4cee1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
8 deletions
+13
-8
gcc/cccp.c
+13
-8
No files found.
gcc/cccp.c
View file @
ae34b95d
...
...
@@ -4503,7 +4503,12 @@ pass_thru_directive (buf, limit, op, keyword)
*
op
->
bufp
++
=
' '
;
bcopy
(
buf
,
op
->
bufp
,
limit
-
buf
);
op
->
bufp
+=
(
limit
-
buf
);
#if 0
*op->bufp++ = '\n';
/* Count the line we have just made in the output,
to get in sync properly. */
op->lineno++;
#endif
}
/* The arglist structure is built by do_define to tell
...
...
@@ -8012,38 +8017,38 @@ initialize_builtins (inp, outp)
char
directive
[
2048
];
register
struct
directive
*
dp
=
&
directive_table
[
0
];
sprintf
(
directive
,
" __BASE_FILE__
\"
%s
\"
"
,
sprintf
(
directive
,
" __BASE_FILE__
\"
%s
\"
\n
"
,
instack
[
0
].
nominal_fname
);
output_line_command
(
inp
,
outp
,
0
,
same_file
);
pass_thru_directive
(
directive
,
&
directive
[
strlen
(
directive
)],
outp
,
dp
);
sprintf
(
directive
,
" __VERSION__
\"
%s
\"
"
,
version_string
);
sprintf
(
directive
,
" __VERSION__
\"
%s
\"
\n
"
,
version_string
);
output_line_command
(
inp
,
outp
,
0
,
same_file
);
pass_thru_directive
(
directive
,
&
directive
[
strlen
(
directive
)],
outp
,
dp
);
sprintf
(
directive
,
" __SIZE_TYPE__ %s"
,
SIZE_TYPE
);
sprintf
(
directive
,
" __SIZE_TYPE__ %s
\n
"
,
SIZE_TYPE
);
output_line_command
(
inp
,
outp
,
0
,
same_file
);
pass_thru_directive
(
directive
,
&
directive
[
strlen
(
directive
)],
outp
,
dp
);
sprintf
(
directive
,
" __PTRDIFF_TYPE__ %s"
,
PTRDIFF_TYPE
);
sprintf
(
directive
,
" __PTRDIFF_TYPE__ %s
\n
"
,
PTRDIFF_TYPE
);
output_line_command
(
inp
,
outp
,
0
,
same_file
);
pass_thru_directive
(
directive
,
&
directive
[
strlen
(
directive
)],
outp
,
dp
);
sprintf
(
directive
,
" __WCHAR_TYPE__ %s"
,
WCHAR_TYPE
);
sprintf
(
directive
,
" __WCHAR_TYPE__ %s
\n
"
,
WCHAR_TYPE
);
output_line_command
(
inp
,
outp
,
0
,
same_file
);
pass_thru_directive
(
directive
,
&
directive
[
strlen
(
directive
)],
outp
,
dp
);
sprintf
(
directive
,
" __WCHAR_TYPE__ %s"
,
WCHAR_TYPE
);
sprintf
(
directive
,
" __WCHAR_TYPE__ %s
\n
"
,
WCHAR_TYPE
);
output_line_command
(
inp
,
outp
,
0
,
same_file
);
pass_thru_directive
(
directive
,
&
directive
[
strlen
(
directive
)],
outp
,
dp
);
sprintf
(
directive
,
" __DATE__
\"
%s %2d %4d
\"
"
,
sprintf
(
directive
,
" __DATE__
\"
%s %2d %4d
\"
\n
"
,
monthnames
[
timebuf
->
tm_mon
],
timebuf
->
tm_mday
,
timebuf
->
tm_year
+
1900
);
output_line_command
(
inp
,
outp
,
0
,
same_file
);
pass_thru_directive
(
directive
,
&
directive
[
strlen
(
directive
)],
outp
,
dp
);
sprintf
(
directive
,
" __TIME__
\"
%02d:%02d:%02d
\"
"
,
sprintf
(
directive
,
" __TIME__
\"
%02d:%02d:%02d
\"
\n
"
,
timebuf
->
tm_hour
,
timebuf
->
tm_min
,
timebuf
->
tm_sec
);
output_line_command
(
inp
,
outp
,
0
,
same_file
);
pass_thru_directive
(
directive
,
&
directive
[
strlen
(
directive
)],
outp
,
dp
);
...
...
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