diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-09-28 14:42:44 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-09-28 14:42:44 +0000 |
commit | c72c617a4ea3784c9a9f634478dc405ef6b2866b (patch) | |
tree | bf9696acb141076c117204d5be44092df5331609 /lib/CodeGen/InstrSched/SchedGraphCommon.cpp | |
parent | 98e81bf16b6f8a87c9761b1785b944aa002cd19c (diff) |
Add includes and use std:: for standard library calls to make code
compile on windows. This patch was contributed by Paolo Invernizzi.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16539 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/InstrSched/SchedGraphCommon.cpp')
-rw-r--r-- | lib/CodeGen/InstrSched/SchedGraphCommon.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/InstrSched/SchedGraphCommon.cpp b/lib/CodeGen/InstrSched/SchedGraphCommon.cpp index 0ad5f5844e..9cae7c616c 100644 --- a/lib/CodeGen/InstrSched/SchedGraphCommon.cpp +++ b/lib/CodeGen/InstrSched/SchedGraphCommon.cpp @@ -14,6 +14,7 @@ #include "llvm/CodeGen/SchedGraphCommon.h" #include "llvm/ADT/STLExtras.h" +#include <algorithm> #include <iostream> namespace llvm { |