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 | 9988569af835578c5abd1ac0ad31a0658d1aa58e (patch) | |
tree | 85a4b9682b795f4b7079ff176a15bf050045d0e4 /llvm/lib/Transforms/Scalar/SCCP.cpp | |
parent | 026eed69e7ff8dce5557a0c95b67dad2ca68180d (diff) | |
download | bcm5719-llvm-9988569af835578c5abd1ac0ad31a0658d1aa58e.tar.gz bcm5719-llvm-9988569af835578c5abd1ac0ad31a0658d1aa58e.zip |
Don't include <map> in Pass.h, which doesn't need it. This requires
adding <map> to many files that actually do need it.
llvm-svn: 48667
Diffstat (limited to 'llvm/lib/Transforms/Scalar/SCCP.cpp')
-rw-r--r-- | llvm/lib/Transforms/Scalar/SCCP.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Scalar/SCCP.cpp b/llvm/lib/Transforms/Scalar/SCCP.cpp index 479588ef3ce..a178507c1cd 100644 --- a/llvm/lib/Transforms/Scalar/SCCP.cpp +++ b/llvm/lib/Transforms/Scalar/SCCP.cpp @@ -40,6 +40,7 @@ #include "llvm/ADT/Statistic.h" #include "llvm/ADT/STLExtras.h" #include <algorithm> +#include <map> using namespace llvm; STATISTIC(NumInstRemoved, "Number of instructions removed"); |