SmallPtrSet will be better
authorAnton Korobeynikov <asl@math.spbu.ru>
Wed, 24 Sep 2008 22:20:46 +0000 (22:20 +0000)
committerAnton Korobeynikov <asl@math.spbu.ru>
Wed, 24 Sep 2008 22:20:46 +0000 (22:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56583 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/AsmPrinter.cpp

index 1f15c4a748fd160587208228ea3ba5bba2d9c2d3..9ee3b5fb3aae591f60020827e5982a8c742fb498 100644 (file)
@@ -28,7 +28,6 @@
 #include "llvm/Target/TargetMachine.h"
 #include "llvm/Target/TargetOptions.h"
 #include "llvm/Target/TargetRegisterInfo.h"
-#include "llvm/ADT/DenseSet.h"
 #include "llvm/ADT/SmallPtrSet.h"
 #include "llvm/ADT/SmallString.h"
 #include "llvm/ADT/StringExtras.h"
@@ -262,7 +261,7 @@ void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
     std::multimap<const Section*,
                   std::pair<MachineConstantPoolEntry, unsigned> > CPMap;
   CPMap  CPs;
-  DenseSet<const Section*> Sections;
+  SmallPtrSet<const Section*, 5> Sections;
 
   for (unsigned i = 0, e = CP.size(); i != e; ++i) {
     MachineConstantPoolEntry CPE = CP[i];
@@ -272,7 +271,7 @@ void AsmPrinter::EmitConstantPool(MachineConstantPool *MCP) {
   }
 
   // Now print stuff into the calculated sections.
-  for (DenseSet<const Section*>::iterator IS = Sections.begin(),
+  for (SmallPtrSet<const Section*, 5>::iterator IS = Sections.begin(),
          ES = Sections.end(); IS != ES; ++IS) {
     SwitchToSection(*IS);
     EmitAlignment(MCP->getConstantPoolAlignment());