aboutsummaryrefslogtreecommitdiff
path: root/ssa.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssa.c')
-rw-r--r--ssa.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ssa.c b/ssa.c
index 9d318b4..05295dc 100644
--- a/ssa.c
+++ b/ssa.c
@@ -2508,7 +2508,6 @@ void strength_reduction(void) {
cstr->id = cstr->prev->id + 1;
inst = cinst_create();
inst->op = PUSH;
- inst->sysp = 1;
inst->src1 = copr_create();
inst->src1->kind = IMMS;
inst->src1->info.cstr = cstr;
@@ -2516,7 +2515,6 @@ void strength_reduction(void) {
for (; push != i; push = np)
{
np = push->next;
- push->sysp = 1;
cblock_append(ibuff, push);
}
print->src1->info.str = "printf";