commit | 249ddbfb29dfc2335f98984878c52b2c77703417 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Fri Mar 21 23:51:57 2008 +0000 |
committer | Dan Gohman <gohman@apple.com> | Fri Mar 21 23:51:57 2008 +0000 |
tree | ae8300c5c9de2e3629531133f66da6cf9c06d504 | |
parent | 03548ebe7ffeedcb0e2ed5b5a96d201e2bbba15d [diff] [blame] |
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
diff --git a/lib/Transforms/IPO/GlobalOpt.cpp b/lib/Transforms/IPO/GlobalOpt.cpp index 5bb7494..e542776 100644 --- a/lib/Transforms/IPO/GlobalOpt.cpp +++ b/lib/Transforms/IPO/GlobalOpt.cpp
@@ -33,6 +33,7 @@ #include "llvm/ADT/Statistic.h" #include "llvm/ADT/StringExtras.h" #include <algorithm> +#include <map> #include <set> using namespace llvm;