summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-01-08 09:10:46 +0000
committerChris Lattner <sabre@nondot.org>2006-01-08 09:10:46 +0000
commite8605a475f69da1f0181903cee7a8e9910cc1b9c (patch)
tree60b1522ad7648f6a8221e9e9d36e8461e034c38d /include/llvm/Analysis
parent10673b63b006980a9444168ab0b6c7bc305b88df (diff)
downloadllvm-e8605a475f69da1f0181903cee7a8e9910cc1b9c.tar.gz
llvm-e8605a475f69da1f0181903cee7a8e9910cc1b9c.tar.bz2
llvm-e8605a475f69da1f0181903cee7a8e9910cc1b9c.tar.xz
Fix the build on platforms where <cassert> doesn't define NULL
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25147 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r--include/llvm/Analysis/ET-Forest.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Analysis/ET-Forest.h b/include/llvm/Analysis/ET-Forest.h
index 892a0b5f88..02b0f76234 100644
--- a/include/llvm/Analysis/ET-Forest.h
+++ b/include/llvm/Analysis/ET-Forest.h
@@ -30,6 +30,7 @@
#define LLVM_ANALYSIS_ETFOREST_H
#include <cassert>
+#include <cstdlib>
namespace llvm {
class ETNode;