aboutsummaryrefslogtreecommitdiff
path: root/ssa.c
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-05-06 23:39:13 +0800
committerTeddy <ted.sybil@gmail.com>2014-05-06 23:39:13 +0800
commit4eef7d65c0759e59be7093298963972e806b14fa (patch)
tree770fd7ec1f6cca52570ec0a0abcdf3991a50517e /ssa.c
parentbec9fa22a648333c13105e8beb1862157952c6e6 (diff)
...
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";