From: Lang Hames Date: Wed, 21 Dec 2011 20:16:11 +0000 (+0000) Subject: Oops - LiveIntervalUnion.cpp file does use std::find. Moving STL header include to... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b638c789be6db2a42f5c6f4de5263021da1942a3;p=oota-llvm.git 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 110fe1e6202..60a68806c55 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 + using namespace llvm;