[llvm-commits] [llvm] r147089 - /llvm/trunk/lib/CodeGen/LiveIntervalUnion.cpp
Lang Hames
lhames at gmail.com
Wed Dec 21 12:16:11 PST 2011
Author: lhames
Date: Wed Dec 21 14:16:11 2011
New Revision: 147089
URL: http://llvm.org/viewvc/llvm-project?rev=147089&view=rev
Log:
Oops - LiveIntervalUnion.cpp file does use std::find. Moving STL header include to LiveIntervalUnion.cpp file.
Modified:
llvm/trunk/lib/CodeGen/LiveIntervalUnion.cpp
Modified: llvm/trunk/lib/CodeGen/LiveIntervalUnion.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveIntervalUnion.cpp?rev=147089&r1=147088&r2=147089&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LiveIntervalUnion.cpp (original)
+++ llvm/trunk/lib/CodeGen/LiveIntervalUnion.cpp Wed Dec 21 14:16:11 2011
@@ -21,6 +21,8 @@
#include "llvm/Support/raw_ostream.h"
#include "llvm/Target/TargetRegisterInfo.h"
+#include <algorithm>
+
using namespace llvm;
More information about the llvm-commits
mailing list