diff options
author | tejohnson <tejohnson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-05-09 18:31:57 +0000 |
---|---|---|
committer | tejohnson <tejohnson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-05-09 18:31:57 +0000 |
commit | fbe8cb74d6dc44d7c6a2100c08156423f43ba2cd (patch) | |
tree | da288b0bdebc39a579cfd230b830754a756f5e0c | |
parent | d5e58b85079af1ee4dce32a80823c7f01ccc4de2 (diff) | |
download | gcc-fbe8cb74d6dc44d7c6a2100c08156423f43ba2cd.tar.gz |
2014-05-09 Teresa Johnson <tejohnson@google.com>
* cgraphunit.c (analyze_functions): Use correct dump file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@210286 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/cgraphunit.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 20192f6687e..67bfdbfdb12 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-05-09 Teresa Johnson <tejohnson@google.com> + + * cgraphunit.c (analyze_functions): Use correct dump file. + 2014-05-09 Florian Weimer <fweimer@redhat.com> * cfgexpand.c (stack_protect_decl_p): New function, extracted from diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index d06ce3217fd..9b51135646f 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -984,7 +984,7 @@ analyze_functions (void) first_analyzed_var = varpool_first_variable (); first_analyzed = cgraph_first_function (); - if (changed && dump_file) + if (changed && cgraph_dump_file) fprintf (cgraph_dump_file, "\n"); /* Lower representation, build callgraph edges and references for all trivially |