diff --git a/include/llvm/Support/Mangler.h b/include/llvm/Support/Mangler.h index 39ac26dd1bf..0a7b33a2327 100644 --- a/include/llvm/Support/Mangler.h +++ b/include/llvm/Support/Mangler.h @@ -14,6 +14,7 @@ #ifndef LLVM_SUPPORT_MANGLER_H #define LLVM_SUPPORT_MANGLER_H +#include "llvm/ADT/DenseMap.h" #include #include #include @@ -40,7 +41,7 @@ class Mangler { /// Memo - This is used to remember the name that we assign a value. /// - std::map Memo; + DenseMap Memo; /// Count - This simple counter is used to unique value names. ///