diff options
Diffstat (limited to 'llvm/include/Support')
| -rw-r--r-- | llvm/include/Support/Annotation.h | 1 | ||||
| -rw-r--r-- | llvm/include/Support/BitSetVector.h | 1 | ||||
| -rw-r--r-- | llvm/include/Support/CommandLine.h | 2 | ||||
| -rw-r--r-- | llvm/include/Support/SCCIterator.h | 1 | ||||
| -rw-r--r-- | llvm/include/Support/Timer.h | 2 | ||||
| -rw-r--r-- | llvm/include/Support/Tree.h | 2 | 
6 files changed, 9 insertions, 0 deletions
| diff --git a/llvm/include/Support/Annotation.h b/llvm/include/Support/Annotation.h index d9c02db8320..8dbad760d7a 100644 --- a/llvm/include/Support/Annotation.h +++ b/llvm/include/Support/Annotation.h @@ -16,6 +16,7 @@  #define SUPPORT_ANNOTATION_H  #include <string> +#include <assert.h>  class AnnotationID;  class Annotation;  class Annotable; diff --git a/llvm/include/Support/BitSetVector.h b/llvm/include/Support/BitSetVector.h index e52ca17c6b1..6ce56be4d0c 100644 --- a/llvm/include/Support/BitSetVector.h +++ b/llvm/include/Support/BitSetVector.h @@ -31,6 +31,7 @@  #include <functional>  #include <iostream> +#include <assert.h>  #define WORDSIZE (32U) diff --git a/llvm/include/Support/CommandLine.h b/llvm/include/Support/CommandLine.h index aafef95f56f..b524c977f7c 100644 --- a/llvm/include/Support/CommandLine.h +++ b/llvm/include/Support/CommandLine.h @@ -19,6 +19,8 @@  #include <cstdarg>  #include "boost/type_traits/object_traits.hpp" +#include <assert.h> +  /// cl Namespace - This namespace contains all of the command line option  /// processing machinery.  It is intentionally a short name to make qualified  /// usage concise. diff --git a/llvm/include/Support/SCCIterator.h b/llvm/include/Support/SCCIterator.h index 26afdd76e4f..ed660d64c72 100644 --- a/llvm/include/Support/SCCIterator.h +++ b/llvm/include/Support/SCCIterator.h @@ -21,6 +21,7 @@  #include <stack>  #include <map> +#include <assert.h>  //--------------------------------------------------------------------------  // class SCC : A simple representation of an SCC in a generic Graph. diff --git a/llvm/include/Support/Timer.h b/llvm/include/Support/Timer.h index e89f32feab4..40ab643928a 100644 --- a/llvm/include/Support/Timer.h +++ b/llvm/include/Support/Timer.h @@ -29,6 +29,8 @@  #include <vector>  #include <iosfwd> +#include <assert.h> +  class TimerGroup;  class Timer { diff --git a/llvm/include/Support/Tree.h b/llvm/include/Support/Tree.h index 9e8d5ae7efa..544e57e5263 100644 --- a/llvm/include/Support/Tree.h +++ b/llvm/include/Support/Tree.h @@ -10,6 +10,8 @@  #include <vector> +#include <assert.h> +  template<class ConcreteTreeNode, class Payload>  class Tree {    std::vector<ConcreteTreeNode*> Children;        // This nodes children, if any | 

