[llvm-commits] [llvm] r54350 - in /llvm/trunk/lib: ExecutionEngine/JIT/JIT.h Target/Alpha/AlphaJITInfo.h Target/Mips/MipsTargetAsmInfo.cpp Target/Mips/MipsTargetAsmInfo.h Transforms/Instrumentation/RSProfiling.cpp
Dan Gohman
gohman at apple.com
Tue Aug 5 08:32:26 PDT 2008
Author: djg
Date: Tue Aug 5 10:32:23 2008
New Revision: 54350
URL: http://llvm.org/viewvc/llvm-project?rev=54350&view=rev
Log:
Trim #includes.
Modified:
llvm/trunk/lib/ExecutionEngine/JIT/JIT.h
llvm/trunk/lib/Target/Alpha/AlphaJITInfo.h
llvm/trunk/lib/Target/Mips/MipsTargetAsmInfo.cpp
llvm/trunk/lib/Target/Mips/MipsTargetAsmInfo.h
llvm/trunk/lib/Transforms/Instrumentation/RSProfiling.cpp
Modified: llvm/trunk/lib/ExecutionEngine/JIT/JIT.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/ExecutionEngine/JIT/JIT.h?rev=54350&r1=54349&r2=54350&view=diff
==============================================================================
--- llvm/trunk/lib/ExecutionEngine/JIT/JIT.h (original)
+++ llvm/trunk/lib/ExecutionEngine/JIT/JIT.h Tue Aug 5 10:32:23 2008
@@ -16,7 +16,6 @@
#include "llvm/ExecutionEngine/ExecutionEngine.h"
#include "llvm/PassManager.h"
-#include <map>
namespace llvm {
Modified: llvm/trunk/lib/Target/Alpha/AlphaJITInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Alpha/AlphaJITInfo.h?rev=54350&r1=54349&r2=54350&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Alpha/AlphaJITInfo.h (original)
+++ llvm/trunk/lib/Target/Alpha/AlphaJITInfo.h Tue Aug 5 10:32:23 2008
@@ -15,9 +15,6 @@
#define ALPHA_JITINFO_H
#include "llvm/Target/TargetJITInfo.h"
-#include "llvm/GlobalValue.h"
-#include <string>
-#include <map>
namespace llvm {
class TargetMachine;
Modified: llvm/trunk/lib/Target/Mips/MipsTargetAsmInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Mips/MipsTargetAsmInfo.cpp?rev=54350&r1=54349&r2=54350&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Mips/MipsTargetAsmInfo.cpp (original)
+++ llvm/trunk/lib/Target/Mips/MipsTargetAsmInfo.cpp Tue Aug 5 10:32:23 2008
@@ -13,6 +13,7 @@
#include "MipsTargetAsmInfo.h"
#include "MipsTargetMachine.h"
+#include "llvm/GlobalVariable.h"
using namespace llvm;
Modified: llvm/trunk/lib/Target/Mips/MipsTargetAsmInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Mips/MipsTargetAsmInfo.h?rev=54350&r1=54349&r2=54350&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Mips/MipsTargetAsmInfo.h (original)
+++ llvm/trunk/lib/Target/Mips/MipsTargetAsmInfo.h Tue Aug 5 10:32:23 2008
@@ -16,7 +16,6 @@
#include "MipsSubtarget.h"
#include "llvm/DerivedTypes.h"
-#include "llvm/GlobalVariable.h"
#include "llvm/Target/TargetAsmInfo.h"
#include "llvm/Target/TargetOptions.h"
#include "llvm/Target/ELFTargetAsmInfo.h"
@@ -24,6 +23,7 @@
namespace llvm {
// Forward declaration.
+ class GlobalValue;
class MipsTargetMachine;
struct MipsTargetAsmInfo : public ELFTargetAsmInfo {
Modified: llvm/trunk/lib/Transforms/Instrumentation/RSProfiling.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Instrumentation/RSProfiling.cpp?rev=54350&r1=54349&r2=54350&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Instrumentation/RSProfiling.cpp (original)
+++ llvm/trunk/lib/Transforms/Instrumentation/RSProfiling.cpp Tue Aug 5 10:32:23 2008
@@ -48,7 +48,6 @@
#include <set>
#include <map>
#include <queue>
-#include <list>
using namespace llvm;
namespace {
More information about the llvm-commits
mailing list