aboutsummaryrefslogtreecommitdiff
path: root/gcc/ipa-prop.c
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim@codesourcery.com>2011-09-22 20:12:49 +0000
committerMaxim Kuvyrkov <mkuvyrkov@gcc.gnu.org>2011-09-22 20:12:49 +0000
commit3ea6239ff2ebe85f666e3e8b4c4f22eea9d32133 (patch)
tree9fe8c1996ed66d338f5cd1adfba6a8f9406b6708 /gcc/ipa-prop.c
parent1907712374ed4ab9ce8446916508fd0bafba971d (diff)
downloadgcc-3ea6239ff2ebe85f666e3e8b4c4f22eea9d32133.zip
gcc-3ea6239ff2ebe85f666e3e8b4c4f22eea9d32133.tar.gz
gcc-3ea6239ff2ebe85f666e3e8b4c4f22eea9d32133.tar.bz2
* ipa-prop.c (ipa_print_node_jump_functions): Fix typos.
From-SVN: r179102
Diffstat (limited to 'gcc/ipa-prop.c')
-rw-r--r--gcc/ipa-prop.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ipa-prop.c b/gcc/ipa-prop.c
index 52f583a..5e85325 100644
--- a/gcc/ipa-prop.c
+++ b/gcc/ipa-prop.c
@@ -195,9 +195,9 @@ ipa_print_node_jump_functions_for_edge (FILE *f, struct cgraph_edge *cs)
tree_code_name[(int)
jump_func->value.pass_through.operation]);
if (jump_func->value.pass_through.operation != NOP_EXPR)
- print_generic_expr (dump_file,
+ print_generic_expr (f,
jump_func->value.pass_through.operand, 0);
- fprintf (dump_file, "\n");
+ fprintf (f, "\n");
}
else if (type == IPA_JF_ANCESTOR)
{
@@ -206,7 +206,7 @@ ipa_print_node_jump_functions_for_edge (FILE *f, struct cgraph_edge *cs)
jump_func->value.ancestor.formal_id,
jump_func->value.ancestor.offset);
print_generic_expr (f, jump_func->value.ancestor.type, 0);
- fprintf (dump_file, "\n");
+ fprintf (f, "\n");
}
}
}