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
236d1439
Commit
236d1439
authored
Sep 08, 1999
by
Jeffrey A Law
Committed by
Jeff Law
Sep 08, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cpplib.c (cpp_push_buffer): Fix order of arguments.
From-SVN: r29201
parent
66599806
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/cpplib.c
+1
-1
No files found.
gcc/ChangeLog
View file @
236d1439
Wed
Sep
8
02
:
23
:
08
1999
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
cpplib
.
c
(
cpp_push_buffer
)
:
Fix
order
of
arguments
.
Wed
Sep
8
04
:
44
:
09
1999
Alexandre
Oliva
<
oliva
@dcc
.
unicamp
.
br
>
Wed
Sep
8
04
:
44
:
09
1999
Alexandre
Oliva
<
oliva
@dcc
.
unicamp
.
br
>
*
rtl
.
h
(
obstack_alloc_rtx
)
:
Removed
,
it
'
s
now
static
in
*
rtl
.
h
(
obstack_alloc_rtx
)
:
Removed
,
it
'
s
now
static
in
...
...
gcc/cpplib.c
View file @
236d1439
...
@@ -718,7 +718,7 @@ cpp_push_buffer (pfile, buffer, length)
...
@@ -718,7 +718,7 @@ cpp_push_buffer (pfile, buffer, length)
return
NULL
;
return
NULL
;
}
}
new
=
(
cpp_buffer
*
)
xcalloc
(
sizeof
(
cpp_buffer
),
1
);
new
=
(
cpp_buffer
*
)
xcalloc
(
1
,
sizeof
(
cpp_buffer
)
);
new
->
if_stack
=
pfile
->
if_stack
;
new
->
if_stack
=
pfile
->
if_stack
;
new
->
cleanup
=
null_cleanup
;
new
->
cleanup
=
null_cleanup
;
...
...
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