commit | c9235d2e855c56e9aa157969f8132a05f9ba89d8 | [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 | 32f3b19a069336de8ce15ab03ccf8b30ea2e8fce [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/Scalar/Reassociate.cpp b/lib/Transforms/Scalar/Reassociate.cpp index 47c767f..0a118cd 100644 --- a/lib/Transforms/Scalar/Reassociate.cpp +++ b/lib/Transforms/Scalar/Reassociate.cpp
@@ -34,6 +34,7 @@ #include "llvm/ADT/PostOrderIterator.h" #include "llvm/ADT/Statistic.h" #include <algorithm> +#include <map> using namespace llvm; STATISTIC(NumLinear , "Number of insts linearized");