diff options
author | Dan Gohman <gohman@apple.com> | 2008-03-21 23:51:57 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-03-21 23:51:57 +0000 |
commit | c9235d2e855c56e9aa157969f8132a05f9ba89d8 (patch) | |
tree | ae8300c5c9de2e3629531133f66da6cf9c06d504 /include/llvm/Analysis/IntervalPartition.h | |
parent | 32f3b19a069336de8ce15ab03ccf8b30ea2e8fce (diff) |
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 'include/llvm/Analysis/IntervalPartition.h')
-rw-r--r-- | include/llvm/Analysis/IntervalPartition.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Analysis/IntervalPartition.h b/include/llvm/Analysis/IntervalPartition.h index 8b85e7c08b..793f7d5c27 100644 --- a/include/llvm/Analysis/IntervalPartition.h +++ b/include/llvm/Analysis/IntervalPartition.h @@ -25,6 +25,7 @@ #include "llvm/Analysis/Interval.h" #include "llvm/Pass.h" +#include <map> namespace llvm { |