summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-06-04 04:46:14 +0000
committerChris Lattner <sabre@nondot.org>2008-06-04 04:46:14 +0000
commit32a9e7a2654c4aab2e617fbe53140492b3d38066 (patch)
treec80d629709606c70c05a75d9c5756e8edcd6c55d /utils
parentd2947ee33e810b24a016b944b375d34910f8f5dd (diff)
downloadllvm-32a9e7a2654c4aab2e617fbe53140492b3d38066.tar.gz
llvm-32a9e7a2654c4aab2e617fbe53140492b3d38066.tar.bz2
llvm-32a9e7a2654c4aab2e617fbe53140492b3d38066.tar.xz
Add #includes required by GCC 4.3, thanks for Zhongxing Xu
for reporting this. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51926 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/LLVMCConfigurationEmitter.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/TableGen/LLVMCConfigurationEmitter.cpp b/utils/TableGen/LLVMCConfigurationEmitter.cpp
index 94c52d1084..f30c6ee0a8 100644
--- a/utils/TableGen/LLVMCConfigurationEmitter.cpp
+++ b/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 {