Skip to content

Commit

Permalink
don't output PHI in expr jit log
Browse files Browse the repository at this point in the history
  • Loading branch information
timo committed Jan 30, 2018
1 parent 8f194be commit 783a4f0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/jit/expr.c
Expand Up @@ -942,6 +942,8 @@ MVMJitExprTree * MVM_jit_expr_tree_build(MVMThreadContext *tc, MVMJitGraph *jg,
MVM_jit_expr_tree_analyze(tc, tree);
MVM_jit_log(tc, "Build tree out of: [");
for (ins = entry; ins != iter->ins; ins = ins->next) {
if (ins->info->opcode == MVM_SSA_PHI)
continue;
MVM_jit_log(tc, "%s, ", ins->info->name);
}
MVM_jit_log(tc, "]\n");
Expand Down

0 comments on commit 783a4f0

Please sign in to comment.