* ipa-prop.c (ipa_print_node_jump_functions): Fix typos.
authorMaxim Kuvyrkov <maxim@codesourcery.com>
Thu, 22 Sep 2011 20:12:49 +0000 (20:12 +0000)
committerMaxim Kuvyrkov <mkuvyrkov@gcc.gnu.org>
Thu, 22 Sep 2011 20:12:49 +0000 (20:12 +0000)
From-SVN: r179102

gcc/ChangeLog
gcc/ipa-prop.c

index da3374b39409d3a865e387a0f24d4c0d31342e74..b4488e1920a6cbd0592f1440129364e137f130d3 100644 (file)
@@ -1,3 +1,7 @@
+2011-09-22  Maxim Kuvyrkov  <maxim@codesourcery.com>
+
+       * ipa-prop.c (ipa_print_node_jump_functions): Fix typos.
+
 2011-09-22  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
 
        * reload.c (find_reloads): Set operand_mode to Pmode for address
index 52f583a7871418579fe298204049f550bb8db6eb..5e85325048fdb9eea4a9114a84f6dafb90a3c84c 100644 (file)
@@ -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");
        }
     }
 }