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
2b1a049f
Commit
2b1a049f
authored
Dec 29, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(make_definition): Pass NULL as 3rd arg to do_define.
From-SVN: r2977
parent
0129f367
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
13 deletions
+19
-13
gcc/cccp.c
+19
-13
No files found.
gcc/cccp.c
View file @
2b1a049f
...
...
@@ -6902,7 +6902,8 @@ macroexpand (hp, op)
args
=
(
struct
argdata
*
)
alloca
((
nargs
+
1
)
*
sizeof
(
struct
argdata
));
for
(
i
=
0
;
i
<
nargs
;
i
++
)
{
args
[
i
].
raw
=
args
[
i
].
expanded
=
(
U_CHAR
*
)
""
;
args
[
i
].
raw
=
(
U_CHAR
*
)
""
;
args
[
i
].
expanded
=
0
;
args
[
i
].
raw_length
=
args
[
i
].
expand_length
=
args
[
i
].
stringified_length
=
0
;
args
[
i
].
free1
=
args
[
i
].
free2
=
0
;
...
...
@@ -6997,9 +6998,22 @@ macroexpand (hp, op)
xbuf_len
+=
args
[
ap
->
argno
].
stringified_length
;
else
if
(
ap
->
raw_before
||
ap
->
raw_after
||
traditional
)
xbuf_len
+=
args
[
ap
->
argno
].
raw_length
;
else
xbuf_len
+=
args
[
ap
->
argno
].
expand_length
;
else
{
/* We have an ordinary (expanded) occurrence of the arg.
So compute its expansion, if we have not already. */
if
(
args
[
ap
->
argno
].
expanded
==
0
)
{
FILE_BUF
obuf
;
obuf
=
expand_to_temp_buffer
(
args
[
ap
->
argno
].
raw
,
args
[
ap
->
argno
].
raw
+
args
[
ap
->
argno
].
raw_length
,
1
,
0
);
args
[
ap
->
argno
].
expanded
=
obuf
.
buf
;
args
[
ap
->
argno
].
expand_length
=
obuf
.
length
;
args
[
ap
->
argno
].
free2
=
obuf
.
buf
;
}
xbuf_len
+=
args
[
ap
->
argno
].
expand_length
;
}
if
(
args
[
ap
->
argno
].
use_count
<
10
)
args
[
ap
->
argno
].
use_count
++
;
}
...
...
@@ -7291,18 +7305,9 @@ macarg (argptr, rest_args)
All this info goes into *ARGPTR. */
if
(
argptr
!=
0
)
{
FILE_BUF
obuf
;
register
U_CHAR
*
buf
,
*
lim
;
register
int
totlen
;
obuf
=
expand_to_temp_buffer
(
argptr
->
raw
,
argptr
->
raw
+
argptr
->
raw_length
,
1
,
0
);
argptr
->
expanded
=
obuf
.
buf
;
argptr
->
expand_length
=
obuf
.
length
;
argptr
->
free2
=
obuf
.
buf
;
buf
=
argptr
->
raw
;
lim
=
buf
+
argptr
->
raw_length
;
...
...
@@ -8321,7 +8326,8 @@ make_definition (str, op)
for
(
kt
=
directive_table
;
kt
->
type
!=
T_DEFINE
;
kt
++
)
;
do_define
(
buf
,
buf
+
strlen
(
buf
)
,
op
,
kt
);
/* Pass NULL instead of OP, since this is a "predefined" macro. */
do_define
(
buf
,
buf
+
strlen
(
buf
),
NULL
,
kt
);
--
indepth
;
}
...
...
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