diff options
author | Chris Lattner <sabre@nondot.org> | 2004-01-10 19:10:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-01-10 19:10:01 +0000 |
commit | 0c53031c5e473631ba05016429c9374a45e68286 (patch) | |
tree | d8d73a634f36d438efabaa5845661042f2061cb9 /llvm/lib/Bytecode/Writer | |
parent | b0a5964356222f295ba7b9c55a125159c2db7cbf (diff) | |
download | bcm5719-llvm-0c53031c5e473631ba05016429c9374a45e68286.tar.gz bcm5719-llvm-0c53031c5e473631ba05016429c9374a45e68286.zip |
Err, we don't need Config/*.h files for things that are standard C++
llvm-svn: 10742
Diffstat (limited to 'llvm/lib/Bytecode/Writer')
-rw-r--r-- | llvm/lib/Bytecode/Writer/Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Bytecode/Writer/Writer.cpp b/llvm/lib/Bytecode/Writer/Writer.cpp index 570e17fa46b..0e541df72d0 100644 --- a/llvm/lib/Bytecode/Writer/Writer.cpp +++ b/llvm/lib/Bytecode/Writer/Writer.cpp @@ -29,7 +29,7 @@ #include "llvm/DerivedTypes.h" #include "Support/STLExtras.h" #include "Support/Statistic.h" -#include "Config/string.h" +#include <cstring> #include <algorithm> using namespace llvm; |