commit | a500fc681de6329194e9755e051422d621387aa3 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Fri Sep 09 23:53:39 2005 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Fri Sep 09 23:53:39 2005 +0000 |
tree | 3d1c09e4639bf5956fd6070cea6c7e0f5443e416 | |
parent | 3ec5d74fc5bc03bdb3ab5876799dff4d82e38193 [diff] [blame] |
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
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;