commit | b638c789be6db2a42f5c6f4de5263021da1942a3 | [log] [tgz] |
---|---|---|
author | Lang Hames <lhames@gmail.com> | Wed Dec 21 20:16:11 2011 +0000 |
committer | Lang Hames <lhames@gmail.com> | Wed Dec 21 20:16:11 2011 +0000 |
tree | 859eaa840c1f5f3dfe8be5ff1bc9ea260ed8be07 | |
parent | bac22fac7d46aa496248ae9659e34f21718b6b42 [diff] [blame] |
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
diff --git a/lib/CodeGen/LiveIntervalUnion.cpp b/lib/CodeGen/LiveIntervalUnion.cpp index 110fe1e..60a6880 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;