Remove unneccesary #includes

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@258 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-07-21 22:53:35 +00:00
parent 57738965f8
commit 36765b0c3f
2 changed files with 2 additions and 18 deletions

View File

@ -10,14 +10,6 @@
//***************************************************************************
//************************** System Include Files **************************/
#include <assert.h>
#include <stdio.h>
#include <iostream.h>
#include <bool.h>
#include <string>
//*************************** User Include Files ***************************/
#include "llvm/Method.h"
@ -75,7 +67,7 @@ SelectInstructionsForMethod(Method* method,
>= DEBUG_BURG_TREES)
{
printcover(basicNode, 1, 0);
printf("\nCover cost == %d\n\n", treecost(basicNode, 1, 0));
cerr << "\nCover cost == " << treecost(basicNode, 1, 0) << "\n\n";
printMatches(basicNode);
}

View File

@ -10,14 +10,6 @@
//***************************************************************************
//************************** System Include Files **************************/
#include <assert.h>
#include <stdio.h>
#include <iostream.h>
#include <bool.h>
#include <string>
//*************************** User Include Files ***************************/
#include "llvm/Method.h"
@ -75,7 +67,7 @@ SelectInstructionsForMethod(Method* method,
>= DEBUG_BURG_TREES)
{
printcover(basicNode, 1, 0);
printf("\nCover cost == %d\n\n", treecost(basicNode, 1, 0));
cerr << "\nCover cost == " << treecost(basicNode, 1, 0) << "\n\n";
printMatches(basicNode);
}