diff options
author | Jeff Cohen <jeffc@jolt-lang.org> | 2006-02-01 04:37:04 +0000 |
---|---|---|
committer | Jeff Cohen <jeffc@jolt-lang.org> | 2006-02-01 04:37:04 +0000 |
commit | 09f0bd39b16eec73e067561c0c7546902ce97c30 (patch) | |
tree | 9f43218841607c9dc2eed1730c420fafb873d499 /lib/VMCore | |
parent | faa60106f1ff711c5704c307968b28459e91a2b3 (diff) | |
download | external_llvm-09f0bd39b16eec73e067561c0c7546902ce97c30.zip external_llvm-09f0bd39b16eec73e067561c0c7546902ce97c30.tar.gz external_llvm-09f0bd39b16eec73e067561c0c7546902ce97c30.tar.bz2 |
Fix VC++ compilation error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25869 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/InlineAsm.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/VMCore/InlineAsm.cpp b/lib/VMCore/InlineAsm.cpp index 430fb07..5436720 100644 --- a/lib/VMCore/InlineAsm.cpp +++ b/lib/VMCore/InlineAsm.cpp @@ -13,6 +13,7 @@ #include "llvm/InlineAsm.h" #include "llvm/DerivedTypes.h" +#include <algorithm> #include <cctype> using namespace llvm; |