diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-15 22:26:16 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-09-15 22:26:16 +0000 |
commit | c9935f378e5c593094e2bb3c8406256cd8f030d0 (patch) | |
tree | 5540b56b825784f62fab6a4a2bc4fb414e0a434f /include | |
parent | d16160f18af7735924ad37e69f54308ba037f1e9 (diff) | |
download | external_llvm-c9935f378e5c593094e2bb3c8406256cd8f030d0.zip external_llvm-c9935f378e5c593094e2bb3c8406256cd8f030d0.tar.gz external_llvm-c9935f378e5c593094e2bb3c8406256cd8f030d0.tar.bz2 |
Unbreak the build for compilers that don't include cstdint everywhere.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139868 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/DebugInfo/DIContext.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/DebugInfo/DIContext.h b/include/llvm/DebugInfo/DIContext.h index 152d90a..b0d3e01 100644 --- a/include/llvm/DebugInfo/DIContext.h +++ b/include/llvm/DebugInfo/DIContext.h @@ -16,6 +16,7 @@ #define LLVM_DEBUGINFO_DICONTEXT_H #include "llvm/ADT/StringRef.h" +#include "llvm/Support/DataTypes.h" namespace llvm { |