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
6610a1b0
Commit
6610a1b0
authored
Aug 09, 1992
by
Michael Meissner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Treat call_pop, call_value_pop like call, call_insn.
From-SVN: r1786
parent
f837a861
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
gcc/genflags.c
+10
-6
No files found.
gcc/genflags.c
View file @
6610a1b0
...
@@ -149,14 +149,18 @@ gen_insn (insn)
...
@@ -149,14 +149,18 @@ gen_insn (insn)
}
}
printf
(
")
\n
"
);
printf
(
")
\n
"
);
}
}
/* Save the current insn, so that we can later put out appropriate
/* Save the current insn, so that we can later put out appropriate
prototypes. At present, most md files have the wrong number of
prototypes. At present, most md files have the wrong number of
arguments for call and call_value, ignoring the extra arguments
arguments for the call insns (call, call_value, call_pop,
that are passed for some machines, so by default, turn off the
call_value_pop) ignoring the extra arguments that are passed for
prototype. */
some machines, so by default, turn off the prototype. */
obstack_ptr
=
(
!
strcmp
(
name
,
"call"
)
||
!
strcmp
(
name
,
"call_value"
))
obstack_ptr
=
(
name
[
0
]
==
'c'
&&
(
!
strcmp
(
name
,
"call"
)
||
!
strcmp
(
name
,
"call_value"
)
||
!
strcmp
(
name
,
"call_pop"
)
||
!
strcmp
(
name
,
"call_value_pop"
)))
?
&
call_obstack
:
&
normal_obstack
;
?
&
call_obstack
:
&
normal_obstack
;
obstack_grow
(
obstack_ptr
,
&
insn
,
sizeof
(
rtx
));
obstack_grow
(
obstack_ptr
,
&
insn
,
sizeof
(
rtx
));
...
...
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