Change comments to comply with local regulations.

This commit is contained in:
Dr. Chat 2016-01-13 19:41:15 -06:00
parent bd6bf16bd1
commit 0771eea0b3
1 changed files with 2 additions and 2 deletions

View File

@ -270,13 +270,13 @@ bool ConstantPropagationPass::Run(HIRBuilder* builder) {
i->Remove(); i->Remove();
} else if (i->src2.value->IsConstant() && } else if (i->src2.value->IsConstant() &&
i->src3.value->IsConstant()) { i->src3.value->IsConstant()) {
// TODO // TODO: Select
// v->set_from(i->src2.value); // v->set_from(i->src2.value);
// v->Select(i->src3.value, i->src1.value); // v->Select(i->src3.value, i->src1.value);
// i->Remove(); // i->Remove();
} }
} else { } else {
// TODO // TODO: vec128 select
} }
} }
break; break;