diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-29 13:29:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-29 13:29:50 +0000 |
commit | 3259a3237d6213002991d62ab1a0ff1f9d460846 (patch) | |
tree | c04ae18ed50e0a414a3c1e01683860505bc9eef3 /include | |
parent | 7c41223c6bf690e0ddee236af028944cd0a70225 (diff) | |
download | external_llvm-3259a3237d6213002991d62ab1a0ff1f9d460846.zip external_llvm-3259a3237d6213002991d62ab1a0ff1f9d460846.tar.gz external_llvm-3259a3237d6213002991d62ab1a0ff1f9d460846.tar.bz2 |
Systems headers use <> not ""
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1023 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h index 83798ae..748ae15 100644 --- a/include/llvm/CodeGen/MachineInstr.h +++ b/include/llvm/CodeGen/MachineInstr.h @@ -20,8 +20,8 @@ #include "llvm/Support/DataTypes.h" #include "llvm/Support/NonCopyable.h" #include "llvm/Target/MachineInstrInfo.h" -#include "hash_map" -#include "hash_set" +#include <hash_map> +#include <hash_set> template<class _MI, class _V> class ValOpIterator; |