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 | 9e50bff47853d35e65f82cd4b62299a8b3d9e487 (patch) | |
tree | f17f43fe200eb33992033a3182ee545fde28c8eb /llvm/utils/TableGen | |
parent | 685dcdc896db7720d5e973148493f65482edfdb3 (diff) | |
download | bcm5719-llvm-9e50bff47853d35e65f82cd4b62299a8b3d9e487.tar.gz bcm5719-llvm-9e50bff47853d35e65f82cd4b62299a8b3d9e487.zip |
Unbreak LLVM on the MSVC compiler:
-Bring in int64_t for TableGen/Record.h and TableGen/TGLexer.h
-Define strtoull
llvm-svn: 57970
Diffstat (limited to 'llvm/utils/TableGen')
-rw-r--r-- | llvm/utils/TableGen/Record.h | 1 | ||||
-rw-r--r-- | llvm/utils/TableGen/TGLexer.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/llvm/utils/TableGen/Record.h b/llvm/utils/TableGen/Record.h index 928fd5cf266..87a49ee2f84 100644 --- a/llvm/utils/TableGen/Record.h +++ b/llvm/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/llvm/utils/TableGen/TGLexer.h b/llvm/utils/TableGen/TGLexer.h index 2c5a852fcd4..0e67f680557 100644 --- a/llvm/utils/TableGen/TGLexer.h +++ b/llvm/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> |