diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-10-22 09:54:13 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-10-22 09:54:13 +0000 |
commit | bb9d18c7d5dea146b2810de0a9bc3d21a1766a60 (patch) | |
tree | 60825397f740e2519a707e69a26a2ccc67763fcc /utils/TableGen | |
parent | 3a67f5050307789b8ff0db80f19b2b4c8a95cf81 (diff) | |
download | external_llvm-bb9d18c7d5dea146b2810de0a9bc3d21a1766a60.zip external_llvm-bb9d18c7d5dea146b2810de0a9bc3d21a1766a60.tar.gz external_llvm-bb9d18c7d5dea146b2810de0a9bc3d21a1766a60.tar.bz2 |
Unbreak LLVM on the MSVC compiler:
-Bring in int64_t for TableGen/Record.h and TableGen/TGLexer.h
-Define strtoull
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57970 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen')
-rw-r--r-- | utils/TableGen/Record.h | 1 | ||||
-rw-r--r-- | utils/TableGen/TGLexer.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h index 928fd5c..87a49ee 100644 --- a/utils/TableGen/Record.h +++ b/utils/TableGen/Record.h @@ -15,6 +15,7 @@ #ifndef RECORD_H #define RECORD_H +#include "llvm/Support/DataTypes.h" #include <string> #include <vector> #include <map> diff --git a/utils/TableGen/TGLexer.h b/utils/TableGen/TGLexer.h index 2c5a852..0e67f68 100644 --- a/utils/TableGen/TGLexer.h +++ b/utils/TableGen/TGLexer.h @@ -14,6 +14,7 @@ #ifndef TGLEXER_H #define TGLEXER_H +#include "llvm/Support/DataTypes.h" #include <vector> #include <string> #include <iosfwd> |