diff options
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/ELFWriter.h | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/MachOWriter.h | 1 | ||||
-rw-r--r-- | llvm/lib/CodeGen/RegAllocSimple.cpp | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/ELFWriter.h b/llvm/lib/CodeGen/ELFWriter.h index 5ea421eb6de..be3b39b476c 100644 --- a/llvm/lib/CodeGen/ELFWriter.h +++ b/llvm/lib/CodeGen/ELFWriter.h @@ -16,6 +16,7 @@ #include "llvm/CodeGen/MachineFunctionPass.h" #include <list> +#include <map> namespace llvm { class GlobalVariable; diff --git a/llvm/lib/CodeGen/MachOWriter.h b/llvm/lib/CodeGen/MachOWriter.h index 39d73eeb4a9..44fa7d4d449 100644 --- a/llvm/lib/CodeGen/MachOWriter.h +++ b/llvm/lib/CodeGen/MachOWriter.h @@ -21,6 +21,7 @@ #include "llvm/Target/TargetData.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetMachOWriterInfo.h" +#include <map> namespace llvm { class GlobalVariable; diff --git a/llvm/lib/CodeGen/RegAllocSimple.cpp b/llvm/lib/CodeGen/RegAllocSimple.cpp index d65136a6164..081edd8d5eb 100644 --- a/llvm/lib/CodeGen/RegAllocSimple.cpp +++ b/llvm/lib/CodeGen/RegAllocSimple.cpp @@ -27,6 +27,7 @@ #include "llvm/Support/Compiler.h" #include "llvm/ADT/Statistic.h" #include "llvm/ADT/STLExtras.h" +#include <map> using namespace llvm; STATISTIC(NumStores, "Number of stores added"); |