diff options
author | Nathan Sidwell <nathan@gcc.gnu.org> | 2003-04-21 21:23:43 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2003-04-21 21:23:43 +0000 |
commit | d79f9ec9ffb6aa93e0bd6479ac12564eb27b46c1 (patch) | |
tree | 9488b731348ab0272cc16dc2311f3c81d9dbf150 /gcc | |
parent | 6a48df451f671cc41481c85a2d1c4382a72e0832 (diff) | |
download | gcc-d79f9ec9ffb6aa93e0bd6479ac12564eb27b46c1.zip gcc-d79f9ec9ffb6aa93e0bd6479ac12564eb27b46c1.tar.gz gcc-d79f9ec9ffb6aa93e0bd6479ac12564eb27b46c1.tar.bz2 |
commit two parts of my last patch that escaped, somehow
From-SVN: r65906
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/gcov.c | 1 | ||||
-rw-r--r-- | gcc/predict.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -53,6 +53,7 @@ Boston, MA 02111-1307, USA. */ #define IN_GCOV 1 #include "gcov-io.h" +#include "gcov-io.c" /* The bbg file is generated by -ftest-coverage option. The da file is generated by a program compiled with -fprofile-arcs. Their formats diff --git a/gcc/predict.c b/gcc/predict.c index 4c6e23d..9bc7751 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -47,7 +47,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "recog.h" #include "expr.h" #include "predict.h" -#include "profile.h" +#include "coverage.h" #include "sreal.h" #include "params.h" #include "target.h" |