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 | 9988569af835578c5abd1ac0ad31a0658d1aa58e (patch) | |
tree | 85a4b9682b795f4b7079ff176a15bf050045d0e4 /llvm/lib/CodeGen/MachOWriter.h | |
parent | 026eed69e7ff8dce5557a0c95b67dad2ca68180d (diff) | |
download | bcm5719-llvm-9988569af835578c5abd1ac0ad31a0658d1aa58e.tar.gz bcm5719-llvm-9988569af835578c5abd1ac0ad31a0658d1aa58e.zip |
Don't include <map> in Pass.h, which doesn't need it. This requires
adding <map> to many files that actually do need it.
llvm-svn: 48667
Diffstat (limited to 'llvm/lib/CodeGen/MachOWriter.h')
-rw-r--r-- | llvm/lib/CodeGen/MachOWriter.h | 1 |
1 files changed, 1 insertions, 0 deletions
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; |