commit | 3eaee313937ea4794eb58cc4d286a57ef1727f3c | [log] [tgz] |
---|---|---|
author | Torok Edwin <edwintorok@gmail.com> | Sun Apr 20 08:33:11 2008 +0000 |
committer | Torok Edwin <edwintorok@gmail.com> | Sun Apr 20 08:33:11 2008 +0000 |
tree | fe8be55e13a100af222ebe2206514dd2e34881b6 | |
parent | fd7d99120b394e7aa4cf0b670f7b783a61dec3a1 [diff] [blame] |
g++-4.3 build-fix: CHAR_BIT requires <climits>. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49989 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index d1e66ba..10627ea 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -57,6 +57,7 @@ #include "llvm/ADT/Statistic.h" #include "llvm/ADT/STLExtras.h" #include <algorithm> +#include <climits> #include <sstream> using namespace llvm; using namespace llvm::PatternMatch;