diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-02-20 11:08:44 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-02-20 11:08:44 +0000 |
commit | 357a27dc855c3247c2a73120fbcb98e708564400 (patch) | |
tree | b32dad9e6075f8f292819f06d26e306fc94427a0 /lib/Bitcode/Reader | |
parent | 85b03769dd6b0e85b3624a49dd78894b621e7b43 (diff) | |
download | external_llvm-357a27dc855c3247c2a73120fbcb98e708564400.zip external_llvm-357a27dc855c3247c2a73120fbcb98e708564400.tar.gz external_llvm-357a27dc855c3247c2a73120fbcb98e708564400.tar.bz2 |
Unbreak build with gcc 4.3: provide missed includes and silence most annoying warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47367 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Reader')
-rw-r--r-- | lib/Bitcode/Reader/BitReader.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Bitcode/Reader/BitReader.cpp b/lib/Bitcode/Reader/BitReader.cpp index 9a77c00..52851cd 100644 --- a/lib/Bitcode/Reader/BitReader.cpp +++ b/lib/Bitcode/Reader/BitReader.cpp @@ -11,6 +11,7 @@ #include "llvm/Bitcode/ReaderWriter.h" #include "llvm/Support/MemoryBuffer.h" #include <string> +#include <cstring> using namespace llvm; |