diff options
author | Lang Hames <lhames@gmail.com> | 2011-12-21 20:16:11 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2011-12-21 20:16:11 +0000 |
commit | e49fbd07559523010f71417848ec13a08798526b (patch) | |
tree | 0280090f2c9e0896d35f8a0c3d6bdd87ddb83d61 /llvm/lib/CodeGen/LiveIntervalUnion.cpp | |
parent | 93176d72e7116824c238009815211eb84daf196d (diff) | |
download | bcm5719-llvm-e49fbd07559523010f71417848ec13a08798526b.tar.gz bcm5719-llvm-e49fbd07559523010f71417848ec13a08798526b.zip |
Oops - LiveIntervalUnion.cpp file does use std::find. Moving STL header include to LiveIntervalUnion.cpp file.
llvm-svn: 147089
Diffstat (limited to 'llvm/lib/CodeGen/LiveIntervalUnion.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveIntervalUnion.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/LiveIntervalUnion.cpp b/llvm/lib/CodeGen/LiveIntervalUnion.cpp index 110fe1e6202..60a68806c55 100644 --- a/llvm/lib/CodeGen/LiveIntervalUnion.cpp +++ b/llvm/lib/CodeGen/LiveIntervalUnion.cpp @@ -21,6 +21,8 @@ #include "llvm/Support/raw_ostream.h" #include "llvm/Target/TargetRegisterInfo.h" +#include <algorithm> + using namespace llvm; |