diff options
author | Matthias Braun <matze@braunis.de> | 2016-01-30 01:24:31 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2016-01-30 01:24:31 +0000 |
commit | b30f2f51410449a6d476fed5c486a4ef8fd5f912 (patch) | |
tree | af58fd7a768c6b601eaf890020aa3e2b4a3130b6 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | |
parent | daa812d518b1f49feddeb08fcc9c5e563b0bf11e (diff) | |
download | bcm5719-llvm-b30f2f51410449a6d476fed5c486a4ef8fd5f912.tar.gz bcm5719-llvm-b30f2f51410449a6d476fed5c486a4ef8fd5f912.zip |
Avoid overly large SmallPtrSet/SmallSet
These sets perform linear searching in small mode so it is never a good
idea to use SmallSize/N bigger than 32.
llvm-svn: 259283
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp index 6555cccdbea..69612ed5aae 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp @@ -630,7 +630,7 @@ static bool printOperand(raw_ostream &OS, const SelectionDAG *G, } } -typedef SmallPtrSet<const SDNode *, 128> VisitedSDNodeSet; +typedef SmallPtrSet<const SDNode *, 32> VisitedSDNodeSet; static void DumpNodesr(raw_ostream &OS, const SDNode *N, unsigned indent, const SelectionDAG *G, VisitedSDNodeSet &once) { if (!once.insert(N).second) // If we've been here before, return now. |