aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Pass.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-03-21 23:51:57 +0000
committerDan Gohman <gohman@apple.com>2008-03-21 23:51:57 +0000
commit249ddbfb29dfc2335f98984878c52b2c77703417 (patch)
treeae8300c5c9de2e3629531133f66da6cf9c06d504 /lib/VMCore/Pass.cpp
parent03548ebe7ffeedcb0e2ed5b5a96d201e2bbba15d (diff)
downloadexternal_llvm-249ddbfb29dfc2335f98984878c52b2c77703417.zip
external_llvm-249ddbfb29dfc2335f98984878c52b2c77703417.tar.gz
external_llvm-249ddbfb29dfc2335f98984878c52b2c77703417.tar.bz2
Don't include <map> in Pass.h, which doesn't need it. This requires
adding <map> to many files that actually do need it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Pass.cpp')
-rw-r--r--lib/VMCore/Pass.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/VMCore/Pass.cpp b/lib/VMCore/Pass.cpp
index a6f126a..bd34883 100644
--- a/lib/VMCore/Pass.cpp
+++ b/lib/VMCore/Pass.cpp
@@ -19,6 +19,7 @@
#include "llvm/ADT/STLExtras.h"
#include "llvm/Support/ManagedStatic.h"
#include <algorithm>
+#include <map>
#include <set>
using namespace llvm;