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
854dfdff
Commit
854dfdff
authored
May 05, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(record_asm_reg_life): Don't abort for asm that doesn't match its
constraints. From-SVN: r4342
parent
dc3e17ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
gcc/reg-stack.c
+3
-4
No files found.
gcc/reg-stack.c
View file @
854dfdff
/* Register to Stack convert for GNU compiler.
/* Register to Stack convert for GNU compiler.
Copyright (C) 1992 Free Software Foundation, Inc.
Copyright (C) 1992
, 1993
Free Software Foundation, Inc.
This file is part of GNU CC.
This file is part of GNU CC.
...
@@ -768,12 +768,11 @@ record_asm_reg_life (insn, regstack, operands, constraints,
...
@@ -768,12 +768,11 @@ record_asm_reg_life (insn, regstack, operands, constraints,
rtx
*
clobber_reg
;
rtx
*
clobber_reg
;
/* Find out what the constraints require. If no constraint
/* Find out what the constraints require. If no constraint
alternative matches, that is a compiler bug: we should have caught
alternative matches, this asm is malformed. */
such an insn during reload. */
i
=
constrain_asm_operands
(
n_operands
,
operands
,
constraints
,
i
=
constrain_asm_operands
(
n_operands
,
operands
,
constraints
,
operand_matches
,
operand_class
);
operand_matches
,
operand_class
);
if
(
i
<
0
)
if
(
i
<
0
)
abort
()
;
malformed_asm
=
1
;
/* Strip SUBREGs here to make the following code simpler. */
/* Strip SUBREGs here to make the following code simpler. */
for
(
i
=
0
;
i
<
n_operands
;
i
++
)
for
(
i
=
0
;
i
<
n_operands
;
i
++
)
...
...
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