diff options
author | Dan Gohman <gohman@apple.com> | 2008-03-21 23:51:57 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-03-21 23:51:57 +0000 |
commit | c9235d2e855c56e9aa157969f8132a05f9ba89d8 (patch) | |
tree | ae8300c5c9de2e3629531133f66da6cf9c06d504 /lib/CodeGen/MachOWriter.h | |
parent | 32f3b19a069336de8ce15ab03ccf8b30ea2e8fce (diff) | |
download | external_llvm-c9235d2e855c56e9aa157969f8132a05f9ba89d8.zip external_llvm-c9235d2e855c56e9aa157969f8132a05f9ba89d8.tar.gz external_llvm-c9235d2e855c56e9aa157969f8132a05f9ba89d8.tar.bz2 |
Don't include <map> in Pass.h, which doesn't need it. This requires
adding <map> to many files that actually do need it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachOWriter.h')
-rw-r--r-- | lib/CodeGen/MachOWriter.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/MachOWriter.h b/lib/CodeGen/MachOWriter.h index 39d73ee..44fa7d4 100644 --- a/lib/CodeGen/MachOWriter.h +++ b/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; |