diff options
author | John Criswell <criswell@uiuc.edu> | 2003-08-20 22:07:45 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-08-20 22:07:45 +0000 |
commit | 43bf32e86c2ac98a8fc812ef314c373bfb574ad5 (patch) | |
tree | fc5561376ac8872b28f7f6f8c159a70c58a54b10 /utils | |
parent | 0f3627e554a94737d2a8565f355b682f6aedc6d7 (diff) |
Added #include <cassert>. In GCC 3.3, we don't get assert() through the other
language header files like we did under 3.2.1, and we're not grabbing it
through the LLVM header files either. So just include it directly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7996 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/InstrSelectorEmitter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/TableGen/InstrSelectorEmitter.h b/utils/TableGen/InstrSelectorEmitter.h index 16ac6bfccf..922aa79dfa 100644 --- a/utils/TableGen/InstrSelectorEmitter.h +++ b/utils/TableGen/InstrSelectorEmitter.h @@ -12,6 +12,8 @@ #include "CodeGenWrappers.h" #include <vector> #include <map> +#include <cassert> + class DagInit; class Init; class InstrSelectorEmitter; |