aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-27 21:13:35 +0000
committerChris Lattner <sabre@nondot.org>2009-07-27 21:13:35 +0000
commitdd061f6085e7492089befa7ed88dd0669ccb049a (patch)
tree54d385f1865dff560473390b6cea89abe1c20916 /include
parent6f83c9c6ef0e7f79825a0a8f22941815e4b684c7 (diff)
downloadexternal_llvm-dd061f6085e7492089befa7ed88dd0669ccb049a.zip
external_llvm-dd061f6085e7492089befa7ed88dd0669ccb049a.tar.gz
external_llvm-dd061f6085e7492089befa7ed88dd0669ccb049a.tar.bz2
simplify #includes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77250 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index bb86dc9..b9004a5 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -16,11 +16,9 @@
#ifndef LLVM_CODEGEN_ASMPRINTER_H
#define LLVM_CODEGEN_ASMPRINTER_H
-#include "llvm/ADT/DenseMap.h"
#include "llvm/CodeGen/MachineFunctionPass.h"
-#include "llvm/Support/DataTypes.h"
#include "llvm/Target/TargetMachine.h"
-#include <set>
+#include "llvm/ADT/DenseMap.h"
namespace llvm {
class GCStrategy;