summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2010-12-13 01:05:54 +0000
committerBill Wendling <isanbard@gmail.com>2010-12-13 01:05:54 +0000
commiteac8f35da8935cb5e5d6f6f0f02d0648fd8f130b (patch)
tree25e68875def6ee7ada439fd06a159e5fe000c87f /utils
parent6a97ed34ed732fe60092bb63a8f811581aa1a349 (diff)
downloadllvm-eac8f35da8935cb5e5d6f6f0f02d0648fd8f130b.tar.gz
llvm-eac8f35da8935cb5e5d6f6f0f02d0648fd8f130b.tar.bz2
llvm-eac8f35da8935cb5e5d6f6f0f02d0648fd8f130b.tar.xz
Move <map> include out of .h and into .cpp.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121661 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/CodeEmitterGen.cpp1
-rw-r--r--utils/TableGen/CodeEmitterGen.h1
2 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/CodeEmitterGen.cpp b/utils/TableGen/CodeEmitterGen.cpp
index 6ee63b8f95..9d0f3fdbae 100644
--- a/utils/TableGen/CodeEmitterGen.cpp
+++ b/utils/TableGen/CodeEmitterGen.cpp
@@ -19,6 +19,7 @@
#include "llvm/ADT/StringExtras.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/Debug.h"
+#include <map>
using namespace llvm;
// FIXME: Somewhat hackish to use a command line option for this. There should
diff --git a/utils/TableGen/CodeEmitterGen.h b/utils/TableGen/CodeEmitterGen.h
index 2b877954d4..a874d970fe 100644
--- a/utils/TableGen/CodeEmitterGen.h
+++ b/utils/TableGen/CodeEmitterGen.h
@@ -15,7 +15,6 @@
#define CODEMITTERGEN_H
#include "TableGenBackend.h"
-#include <map>
#include <vector>
#include <string>