diff options
author | Torok Edwin <edwintorok@gmail.com> | 2008-04-20 08:33:11 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2008-04-20 08:33:11 +0000 |
commit | 3eaee313937ea4794eb58cc4d286a57ef1727f3c (patch) | |
tree | fe8be55e13a100af222ebe2206514dd2e34881b6 | |
parent | fd7d99120b394e7aa4cf0b670f7b783a61dec3a1 (diff) |
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
-rw-r--r-- | lib/Transforms/Scalar/InstructionCombining.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index d1e66ba916..10627ea6e9 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; |