diff options
author | John Criswell <criswell@uiuc.edu> | 2003-06-11 14:17:21 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-06-11 14:17:21 +0000 |
commit | 028936ada14335bb04f377d46a6261dc4c66dafd (patch) | |
tree | b6ac14faac39078105b0ccffb8cc2eb8f4c45aa0 | |
parent | be583b914d8156b99d3da264d5adca37fee8dbc9 (diff) |
Added assert.h so that it compiles under newer versions of GCC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6683 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | support/tools/TableGen/Record.h | 2 | ||||
-rw-r--r-- | utils/TableGen/Record.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/support/tools/TableGen/Record.h b/support/tools/TableGen/Record.h index 4f955b57d9..0118ff1f42 100644 --- a/support/tools/TableGen/Record.h +++ b/support/tools/TableGen/Record.h @@ -10,6 +10,8 @@ #include <vector> #include <map> #include <iostream> +#include <assert.h> + class Init; class UnsetInit; class BitInit; diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h index 4f955b57d9..0118ff1f42 100644 --- a/utils/TableGen/Record.h +++ b/utils/TableGen/Record.h @@ -10,6 +10,8 @@ #include <vector> #include <map> #include <iostream> +#include <assert.h> + class Init; class UnsetInit; class BitInit; |