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
809ab857
Commit
809ab857
authored
Aug 19, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(emit_move_insn_1): Never make a no-conflict block.
From-SVN: r7951
parent
c8ad69c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
19 deletions
+0
-19
gcc/expr.c
+0
-19
No files found.
gcc/expr.c
View file @
809ab857
...
...
@@ -1826,8 +1826,6 @@ emit_move_insn_1 (x, y)
int
stack
=
push_operand
(
x
,
GET_MODE
(
x
));
rtx
insns
;
start_sequence
();
/* If this is a stack, push the highpart first, so it
will be in the argument order.
...
...
@@ -1861,17 +1859,6 @@ emit_move_insn_1 (x, y)
(
gen_imagpart
(
submode
,
x
),
gen_imagpart
(
submode
,
y
)));
}
insns
=
get_insns
();
end_sequence
();
/* If X is a CONCAT, we got insns like RD = RS, ID = IS,
each with a separate pseudo as destination.
It's not correct for flow to treat them as a unit. */
if
(
GET_CODE
(
x
)
!=
CONCAT
)
emit_no_conflict_block
(
insns
,
x
,
y
,
NULL_RTX
,
NULL_RTX
);
else
emit_insns
(
insns
);
return
get_last_insn
();
}
...
...
@@ -1883,8 +1870,6 @@ emit_move_insn_1 (x, y)
rtx
last_insn
=
0
;
rtx
insns
;
start_sequence
();
for
(
i
=
0
;
i
<
(
GET_MODE_SIZE
(
mode
)
+
(
UNITS_PER_WORD
-
1
))
/
UNITS_PER_WORD
;
i
++
)
...
...
@@ -1909,10 +1894,6 @@ emit_move_insn_1 (x, y)
last_insn
=
emit_move_insn
(
xpart
,
ypart
);
}
insns
=
get_insns
();
end_sequence
();
emit_no_conflict_block
(
insns
,
x
,
y
,
NULL_RTX
,
NULL_RTX
);
return
last_insn
;
}
else
...
...
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