diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-09 23:53:39 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-09 23:53:39 +0000 |
commit | a500fc681de6329194e9755e051422d621387aa3 (patch) | |
tree | 3d1c09e4639bf5956fd6070cea6c7e0f5443e416 | |
parent | 3ec5d74fc5bc03bdb3ab5876799dff4d82e38193 (diff) | |
download | external_llvm-a500fc681de6329194e9755e051422d621387aa3.zip external_llvm-a500fc681de6329194e9755e051422d621387aa3.tar.gz external_llvm-a500fc681de6329194e9755e051422d621387aa3.tar.bz2 |
Add a missing #include, patch courtesy of Baptiste Lepilleur.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23302 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index bffc176..ddbe45a 100644 --- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -40,6 +40,7 @@ #include "llvm/Support/Debug.h" #include "llvm/Support/MathExtras.h" #include "llvm/Target/TargetLowering.h" +#include <algorithm> #include <cmath> using namespace llvm; |