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 | b638c789be6db2a42f5c6f4de5263021da1942a3 (patch) | |
tree | 859eaa840c1f5f3dfe8be5ff1bc9ea260ed8be07 /lib/CodeGen/LiveIntervalUnion.cpp | |
parent | bac22fac7d46aa496248ae9659e34f21718b6b42 (diff) |
Oops - LiveIntervalUnion.cpp file does use std::find. Moving STL header include to LiveIntervalUnion.cpp file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147089 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/LiveIntervalUnion.cpp')
-rw-r--r-- | lib/CodeGen/LiveIntervalUnion.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/LiveIntervalUnion.cpp b/lib/CodeGen/LiveIntervalUnion.cpp index 110fe1e620..60a68806c5 100644 --- a/lib/CodeGen/LiveIntervalUnion.cpp +++ b/lib/CodeGen/LiveIntervalUnion.cpp @@ -21,6 +21,8 @@ #include "llvm/Support/raw_ostream.h" #include "llvm/Target/TargetRegisterInfo.h" +#include <algorithm> + using namespace llvm; |