diff options
author | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-02-07 16:59:17 +0000 |
---|---|---|
committer | Lauro Ramos Venancio <lauro.venancio@gmail.com> | 2007-02-07 16:59:17 +0000 |
commit | 58a0d64fae7ace05b27dad94fd427991d853619b (patch) | |
tree | 5c06ba1fe109aea4607d60774a7b3a95e5b7b7dc | |
parent | 02f178fb8823efc679dd726c86464d679fb49b22 (diff) | |
download | external_llvm-58a0d64fae7ace05b27dad94fd427991d853619b.zip external_llvm-58a0d64fae7ace05b27dad94fd427991d853619b.tar.gz external_llvm-58a0d64fae7ace05b27dad94fd427991d853619b.tar.bz2 |
Fix build error.
include/llvm/ADT/APInt.h:326: error: âassertâ was not declared in this scope
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34002 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/ADT/APInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h index 74667e7..62a33d5 100644 --- a/include/llvm/ADT/APInt.h +++ b/include/llvm/ADT/APInt.h @@ -16,6 +16,7 @@ #define LLVM_APINT_H #include "llvm/Support/DataTypes.h" +#include <cassert> #include <string> namespace llvm { |