aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System/Win32
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-11-16 07:00:23 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-11-16 07:00:23 +0000
commit56d3cdbd21452f4fa39ef87f0ed9d4ffbcd78c3f (patch)
tree36533e9d0643b804093b7f66f872dedc0d2bcda4 /lib/System/Win32
parent98601218901190d9d3bb5ebccae659f8db265b5d (diff)
downloadexternal_llvm-56d3cdbd21452f4fa39ef87f0ed9d4ffbcd78c3f.zip
external_llvm-56d3cdbd21452f4fa39ef87f0ed9d4ffbcd78c3f.tar.gz
external_llvm-56d3cdbd21452f4fa39ef87f0ed9d4ffbcd78c3f.tar.bz2
Remove useless #include.
Patch contributed by Jeff Cohen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17891 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Win32')
-rw-r--r--lib/System/Win32/MappedFile.cpp1
-rw-r--r--lib/System/Win32/MappedFile.inc1
-rw-r--r--lib/System/Win32/Memory.cpp1
-rw-r--r--lib/System/Win32/Memory.inc1
-rw-r--r--lib/System/Win32/Path.cpp1
-rw-r--r--lib/System/Win32/Path.inc1
-rw-r--r--lib/System/Win32/Process.cpp1
-rw-r--r--lib/System/Win32/Process.inc1
-rw-r--r--lib/System/Win32/Program.cpp1
-rw-r--r--lib/System/Win32/Program.inc1
-rw-r--r--lib/System/Win32/SysConfig.cpp2
11 files changed, 0 insertions, 12 deletions
diff --git a/lib/System/Win32/MappedFile.cpp b/lib/System/Win32/MappedFile.cpp
index 3112a93..237e196 100644
--- a/lib/System/Win32/MappedFile.cpp
+++ b/lib/System/Win32/MappedFile.cpp
@@ -16,7 +16,6 @@
//===----------------------------------------------------------------------===//
#include "Win32.h"
-#include "llvm/System/MappedFile.h"
#include "llvm/System/Process.h"
namespace llvm {
diff --git a/lib/System/Win32/MappedFile.inc b/lib/System/Win32/MappedFile.inc
index 3112a93..237e196 100644
--- a/lib/System/Win32/MappedFile.inc
+++ b/lib/System/Win32/MappedFile.inc
@@ -16,7 +16,6 @@
//===----------------------------------------------------------------------===//
#include "Win32.h"
-#include "llvm/System/MappedFile.h"
#include "llvm/System/Process.h"
namespace llvm {
diff --git a/lib/System/Win32/Memory.cpp b/lib/System/Win32/Memory.cpp
index ab3bb51..f7b05ab 100644
--- a/lib/System/Win32/Memory.cpp
+++ b/lib/System/Win32/Memory.cpp
@@ -13,7 +13,6 @@
//===----------------------------------------------------------------------===//
#include "Win32.h"
-#include "llvm/System/Memory.h"
#include "llvm/System/Process.h"
namespace llvm {
diff --git a/lib/System/Win32/Memory.inc b/lib/System/Win32/Memory.inc
index ab3bb51..f7b05ab 100644
--- a/lib/System/Win32/Memory.inc
+++ b/lib/System/Win32/Memory.inc
@@ -13,7 +13,6 @@
//===----------------------------------------------------------------------===//
#include "Win32.h"
-#include "llvm/System/Memory.h"
#include "llvm/System/Process.h"
namespace llvm {
diff --git a/lib/System/Win32/Path.cpp b/lib/System/Win32/Path.cpp
index 08a3d40..944aea1 100644
--- a/lib/System/Win32/Path.cpp
+++ b/lib/System/Win32/Path.cpp
@@ -20,7 +20,6 @@
//===----------------------------------------------------------------------===//
#include "Win32.h"
-#include <llvm/System/Path.h>
#include <fstream>
#include <malloc.h>
diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc
index 08a3d40..944aea1 100644
--- a/lib/System/Win32/Path.inc
+++ b/lib/System/Win32/Path.inc
@@ -20,7 +20,6 @@
//===----------------------------------------------------------------------===//
#include "Win32.h"
-#include <llvm/System/Path.h>
#include <fstream>
#include <malloc.h>
diff --git a/lib/System/Win32/Process.cpp b/lib/System/Win32/Process.cpp
index 6157258..5a4b4f0 100644
--- a/lib/System/Win32/Process.cpp
+++ b/lib/System/Win32/Process.cpp
@@ -12,7 +12,6 @@
//===----------------------------------------------------------------------===//
#include "Win32.h"
-#include "llvm/System/Process.h"
//===----------------------------------------------------------------------===//
//=== WARNING: Implementation here must contain only Win32 specific code
diff --git a/lib/System/Win32/Process.inc b/lib/System/Win32/Process.inc
index 6157258..5a4b4f0 100644
--- a/lib/System/Win32/Process.inc
+++ b/lib/System/Win32/Process.inc
@@ -12,7 +12,6 @@
//===----------------------------------------------------------------------===//
#include "Win32.h"
-#include "llvm/System/Process.h"
//===----------------------------------------------------------------------===//
//=== WARNING: Implementation here must contain only Win32 specific code
diff --git a/lib/System/Win32/Program.cpp b/lib/System/Win32/Program.cpp
index 0078fb7..a509788 100644
--- a/lib/System/Win32/Program.cpp
+++ b/lib/System/Win32/Program.cpp
@@ -13,7 +13,6 @@
// Include the generic Unix implementation
#include "Win32.h"
-#include "llvm/System/Program.h"
#include <malloc.h>
//===----------------------------------------------------------------------===//
diff --git a/lib/System/Win32/Program.inc b/lib/System/Win32/Program.inc
index 0078fb7..a509788 100644
--- a/lib/System/Win32/Program.inc
+++ b/lib/System/Win32/Program.inc
@@ -13,7 +13,6 @@
// Include the generic Unix implementation
#include "Win32.h"
-#include "llvm/System/Program.h"
#include <malloc.h>
//===----------------------------------------------------------------------===//
diff --git a/lib/System/Win32/SysConfig.cpp b/lib/System/Win32/SysConfig.cpp
index b3a941b..66a463b 100644
--- a/lib/System/Win32/SysConfig.cpp
+++ b/lib/System/Win32/SysConfig.cpp
@@ -11,8 +11,6 @@
//
//===----------------------------------------------------------------------===//
-#include "llvm/System/SysConfig.h"
-
namespace llvm {
// Some LLVM programs such as bugpoint produce core files as a normal part of