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 | a74fa15f320fe999a682eb81fd902478aea3351b (patch) | |
tree | 33befe9d82e92d066a45e7da548acd66f6306e70 /llvm/lib/Analysis/LazyValueInfo.cpp | |
parent | ea772bbba09194d48965f39d0f7635bde22e3d2c (diff) | |
download | bcm5719-llvm-a74fa15f320fe999a682eb81fd902478aea3351b.tar.gz bcm5719-llvm-a74fa15f320fe999a682eb81fd902478aea3351b.zip |
Clean up some of the PassRegistry implementation, and pImpl-ize it to reduce #include clutter
and exposing internal details.
llvm-svn: 113252
Diffstat (limited to 'llvm/lib/Analysis/LazyValueInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/LazyValueInfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/LazyValueInfo.cpp b/llvm/lib/Analysis/LazyValueInfo.cpp index 2c25f80dbea..74267e045ae 100644 --- a/llvm/lib/Analysis/LazyValueInfo.cpp +++ b/llvm/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; |