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
39178486
Commit
39178486
authored
Feb 27, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(final_scan_insn): Always set OPS and use alloca.
From-SVN: r6643
parent
d0c76654
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
gcc/final.c
+2
-8
No files found.
gcc/final.c
View file @
39178486
...
...
@@ -1627,7 +1627,7 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
if
(
asm_noperands
(
body
)
>=
0
)
{
int
noperands
=
asm_noperands
(
body
);
rtx
*
ops
;
rtx
*
ops
=
(
rtx
*
)
alloca
(
noperands
*
sizeof
(
rtx
))
;
char
*
string
;
/* There's no telling what that did to the condition codes. */
...
...
@@ -1635,11 +1635,6 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
if
(
prescan
>
0
)
break
;
/* alloca won't do here, since only return from `final'
would free it. */
if
(
noperands
>
0
)
ops
=
(
rtx
*
)
xmalloc
(
noperands
*
sizeof
(
rtx
));
if
(
!
app_on
)
{
fprintf
(
file
,
ASM_APP_ON
);
...
...
@@ -1652,11 +1647,10 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
/* Inhibit aborts on what would otherwise be compiler bugs. */
insn_noperands
=
noperands
;
this_is_asm_operands
=
insn
;
/* Output the insn using them. */
output_asm_insn
(
string
,
ops
);
this_is_asm_operands
=
0
;
if
(
noperands
>
0
)
free
(
ops
);
break
;
}
...
...
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