diff options
author | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-06-25 21:07:58 +0000 |
---|---|---|
committer | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-06-25 21:07:58 +0000 |
commit | 5ba99bd124dc18302f527d6e2b0efd0fa866bc9e (patch) | |
tree | bfb70cbcb3114ff4c8783c4632ac1232964006ff /lib/Transforms/Scalar/GCSE.cpp | |
parent | cfb22d3c14b53bc73ec90f7d471c2d2d2453cf03 (diff) |
changes to make it compatible with 64bit gcc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2792 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/GCSE.cpp')
-rw-r--r-- | lib/Transforms/Scalar/GCSE.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/GCSE.cpp b/lib/Transforms/Scalar/GCSE.cpp index 850e65a64f..56bb191e16 100644 --- a/lib/Transforms/Scalar/GCSE.cpp +++ b/lib/Transforms/Scalar/GCSE.cpp @@ -23,6 +23,9 @@ #include "llvm/Support/CFG.h" #include "Support/StatisticReporter.h" #include <algorithm> +using std::set; +using std::map; + static Statistic<> NumInstRemoved("gcse\t\t- Number of instructions removed"); static Statistic<> NumLoadRemoved("gcse\t\t- Number of loads removed"); |