diff options
author | Owen Anderson <resistor@mac.com> | 2010-09-07 19:16:25 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-09-07 19:16:25 +0000 |
commit | 6bcd3a02653c45b87094577517547b7eb9f76395 (patch) | |
tree | efaed99aa36f9601f8763857583296f308462608 /lib/Analysis/LazyValueInfo.cpp | |
parent | 72d1027d873ab42ccd93719b6e0248807422f959 (diff) | |
download | external_llvm-6bcd3a02653c45b87094577517547b7eb9f76395.zip external_llvm-6bcd3a02653c45b87094577517547b7eb9f76395.tar.gz external_llvm-6bcd3a02653c45b87094577517547b7eb9f76395.tar.bz2 |
Clean up some of the PassRegistry implementation, and pImpl-ize it to reduce #include clutter
and exposing internal details.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113252 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LazyValueInfo.cpp')
-rw-r--r-- | lib/Analysis/LazyValueInfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Analysis/LazyValueInfo.cpp b/lib/Analysis/LazyValueInfo.cpp index 2c25f80..74267e0 100644 --- a/lib/Analysis/LazyValueInfo.cpp +++ b/lib/Analysis/LazyValueInfo.cpp @@ -26,6 +26,8 @@ #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/DenseSet.h" #include "llvm/ADT/STLExtras.h" +#include <map> +#include <set> using namespace llvm; char LazyValueInfo::ID = 0; |