diff options
author | Chris Lattner <sabre@nondot.org> | 2008-06-04 04:46:14 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-06-04 04:46:14 +0000 |
commit | 6449690da46eec29daa54848bc4a003c241f640a (patch) | |
tree | 0a06729bde63d9a579d8e8ee49b9b774281b119d /llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp | |
parent | 5ccccf0326263815cc436a463898c22c6085896a (diff) | |
download | bcm5719-llvm-6449690da46eec29daa54848bc4a003c241f640a.tar.gz bcm5719-llvm-6449690da46eec29daa54848bc4a003c241f640a.zip |
Add #includes required by GCC 4.3, thanks for Zhongxing Xu
for reporting this.
llvm-svn: 51926
Diffstat (limited to 'llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp')
-rw-r--r-- | llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp b/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp index 94c52d10849..f30c6ee0a83 100644 --- a/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp +++ b/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp @@ -20,13 +20,12 @@ #include "llvm/ADT/StringMap.h" #include "llvm/ADT/StringSet.h" #include "llvm/Support/Streams.h" - #include <algorithm> #include <cassert> #include <functional> #include <stdexcept> #include <string> - +#include <typeinfo> using namespace llvm; namespace { |