Skip to content

Commit 615eb47

Browse files
committed
Reverting r315590; it did not include changes for llvm-tblgen, which is causing link errors for several people.
Error LNK2019 unresolved external symbol "public: void __cdecl `anonymous namespace'::MatchableInfo::dump(void)const " (?dump@MatchableInfo@?A0xf4f1c304@@QEBAXXZ) referenced in function "public: void __cdecl `anonymous namespace'::AsmMatcherEmitter::run(class llvm::raw_ostream &)" (?run@AsmMatcherEmitter@?A0xf4f1c304@@QEAAXAEAVraw_ostream@llvm@@@z) llvm-tblgen D:\llvm\2017\utils\TableGen\AsmMatcherEmitter.obj 1 llvm-svn: 315854
1 parent ae12efa commit 615eb47

File tree

113 files changed

+172
-173
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+172
-173
lines changed

llvm/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -388,15 +388,15 @@ option(LLVM_ENABLE_LLD "Use lld as C and C++ linker." OFF)
388388
option(LLVM_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
389389
option(LLVM_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
390390

391+
option(LLVM_ENABLE_DUMP "Enable dump functions in release builds" OFF)
392+
391393
if( NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG" )
392394
option(LLVM_ENABLE_ASSERTIONS "Enable assertions" OFF)
393-
option(LLVM_FORCE_ENABLE_DUMP "Enable dump functions in release builds" OFF)
394395
else()
395396
option(LLVM_ENABLE_ASSERTIONS "Enable assertions" ON)
396-
option(LLVM_FORCE_ENABLE_DUMP "Enable dump functions in release builds" ON)
397397
endif()
398398

399-
if( LLVM_ENABLE_ASSERTIONS OR LLVM_FORCE_ENABLE_DUMP )
399+
if( LLVM_ENABLE_ASSERTIONS )
400400
set(LLVM_ENABLE_DUMP ON)
401401
endif()
402402

llvm/bindings/ocaml/llvm/llvm_ocaml.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ CAMLprim LLVMContextRef llvm_type_context(LLVMTypeRef Ty) {
336336

337337
/* lltype -> unit */
338338
CAMLprim value llvm_dump_type(LLVMTypeRef Val) {
339-
#ifdef LLVM_ENABLE_DUMP
339+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
340340
LLVMDumpType(Val);
341341
#else
342342
caml_raise_with_arg(*caml_named_value("Llvm.FeatureDisabled"),

llvm/include/llvm/Analysis/DominanceFrontier.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class DominanceFrontierBase {
109109
void print(raw_ostream &OS) const;
110110

111111
/// dump - Dump the dominance frontier to dbgs().
112-
#ifdef LLVM_ENABLE_DUMP
112+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
113113
void dump() const;
114114
#endif
115115
};

llvm/include/llvm/Analysis/DominanceFrontierImpl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ void DominanceFrontierBase<BlockT, IsPostDom>::print(raw_ostream &OS) const {
148148
}
149149
}
150150

151-
#ifdef LLVM_ENABLE_DUMP
151+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
152152
template <class BlockT, bool IsPostDom>
153153
void DominanceFrontierBase<BlockT, IsPostDom>::dump() const {
154154
print(dbgs());

llvm/include/llvm/Analysis/RegionInfo.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ class RegionBase : public RegionNodeBase<Tr> {
437437
void print(raw_ostream &OS, bool printTree = true, unsigned level = 0,
438438
PrintStyle Style = PrintNone) const;
439439

440-
#ifdef LLVM_ENABLE_DUMP
440+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
441441
/// @brief Print the region to stderr.
442442
void dump() const;
443443
#endif
@@ -805,7 +805,7 @@ class RegionInfoBase {
805805
static typename RegionT::PrintStyle printStyle;
806806

807807
void print(raw_ostream &OS) const;
808-
#ifdef LLVM_ENABLE_DUMP
808+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
809809
void dump() const;
810810
#endif
811811

llvm/include/llvm/Analysis/RegionInfoImpl.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ void RegionBase<Tr>::print(raw_ostream &OS, bool print_tree, unsigned level,
521521
OS.indent(level * 2) << "} \n";
522522
}
523523

524-
#ifdef LLVM_ENABLE_DUMP
524+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
525525
template <class Tr>
526526
void RegionBase<Tr>::dump() const {
527527
print(dbgs(), true, getDepth(), RegionInfoBase<Tr>::printStyle);
@@ -789,7 +789,7 @@ void RegionInfoBase<Tr>::print(raw_ostream &OS) const {
789789
OS << "End region tree\n";
790790
}
791791

792-
#ifdef LLVM_ENABLE_DUMP
792+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
793793
template <class Tr>
794794
void RegionInfoBase<Tr>::dump() const { print(dbgs()); }
795795
#endif

llvm/include/llvm/CodeGen/TargetSchedule.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class TargetSchedModel {
116116
return SchedModel.getProcResource(PIdx);
117117
}
118118

119-
#ifdef LLVM_ENABLE_DUMP
119+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
120120
const char *getResourceName(unsigned PIdx) const {
121121
if (!PIdx)
122122
return "MOps";

llvm/include/llvm/Config/config.h.cmake

+3
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,9 @@
353353
/* Has gcc/MSVC atomic intrinsics */
354354
#cmakedefine01 LLVM_HAS_ATOMICS
355355

356+
/* Define if LLVM_ENABLE_DUMP is enabled */
357+
#cmakedefine LLVM_ENABLE_DUMP
358+
356359
/* Host triple LLVM will be executed on */
357360
#cmakedefine LLVM_HOST_TRIPLE "${LLVM_HOST_TRIPLE}"
358361

llvm/include/llvm/Config/llvm-config.h.cmake

-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@
1414
#ifndef LLVM_CONFIG_H
1515
#define LLVM_CONFIG_H
1616

17-
/* Defined in debug builds and release builds if LLVM_FORCE_ENABLE_DUMP
18-
or LLVM_ENABLE_ASSERTIONS */
19-
#cmakedefine LLVM_ENABLE_DUMP
20-
2117
/* Define if we link Polly to the tools */
2218
#cmakedefine LINK_POLLY_INTO_TOOLS
2319

llvm/include/llvm/IR/Attributes.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ class AttributeSet {
283283

284284
iterator begin() const;
285285
iterator end() const;
286-
#ifdef LLVM_ENABLE_DUMP
286+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
287287
void dump() const;
288288
#endif
289289
};

llvm/include/llvm/MC/MCSchedule.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ struct InstrItinerary;
2424

2525
/// Define a kind of processor resource that will be modeled by the scheduler.
2626
struct MCProcResourceDesc {
27-
#ifdef LLVM_ENABLE_DUMP
27+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
2828
const char *Name;
2929
#endif
3030
unsigned NumUnits; // Number of resource of this kind
@@ -102,7 +102,7 @@ struct MCSchedClassDesc {
102102
static const unsigned short InvalidNumMicroOps = UINT16_MAX;
103103
static const unsigned short VariantNumMicroOps = UINT16_MAX - 1;
104104

105-
#ifdef LLVM_ENABLE_DUMP
105+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
106106
const char* Name;
107107
#endif
108108
unsigned short NumMicroOps;

llvm/include/llvm/Object/Wasm.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class WasmSymbol {
8787
<< ", ImportIndex=" << ImportIndex;
8888
}
8989

90-
#ifdef LLVM_ENABLE_DUMP
90+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
9191
LLVM_DUMP_METHOD void dump() const { print(dbgs()); }
9292
#endif
9393
};

llvm/include/llvm/Support/Compiler.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -442,10 +442,10 @@ void AnnotateIgnoreWritesEnd(const char *file, int line);
442442
/// \brief Mark debug helper function definitions like dump() that should not be
443443
/// stripped from debug builds.
444444
/// Note that you should also surround dump() functions with
445-
/// `#ifdef LLVM_ENABLE_DUMP` so they do always get stripped in release builds
446-
/// unless asserts are enabled..
445+
/// `#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)` so they do always
446+
/// get stripped in release builds.
447447
// FIXME: Move this to a private config.h as it's not usable in public headers.
448-
#ifdef LLVM_ENABLE_DUMP
448+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
449449
#define LLVM_DUMP_METHOD LLVM_ATTRIBUTE_NOINLINE LLVM_ATTRIBUTE_USED
450450
#else
451451
#define LLVM_DUMP_METHOD LLVM_ATTRIBUTE_NOINLINE

llvm/lib/Analysis/AliasSetTracker.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ void AliasSetTracker::print(raw_ostream &OS) const {
648648
OS << "\n";
649649
}
650650

651-
#ifdef LLVM_ENABLE_DUMP
651+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
652652
LLVM_DUMP_METHOD void AliasSet::dump() const { print(dbgs()); }
653653
LLVM_DUMP_METHOD void AliasSetTracker::dump() const { print(dbgs()); }
654654
#endif

llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ ScaledNumber<uint64_t> BlockMass::toScaled() const {
4646
return ScaledNumber<uint64_t>(getMass() + 1, -64);
4747
}
4848

49-
#ifdef LLVM_ENABLE_DUMP
49+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
5050
LLVM_DUMP_METHOD void BlockMass::dump() const { print(dbgs()); }
5151
#endif
5252

llvm/lib/Analysis/CallGraph.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ void CallGraph::print(raw_ostream &OS) const {
109109
CN->print(OS);
110110
}
111111

112-
#ifdef LLVM_ENABLE_DUMP
112+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
113113
LLVM_DUMP_METHOD void CallGraph::dump() const { print(dbgs()); }
114114
#endif
115115

@@ -178,7 +178,7 @@ void CallGraphNode::print(raw_ostream &OS) const {
178178
OS << '\n';
179179
}
180180

181-
#ifdef LLVM_ENABLE_DUMP
181+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
182182
LLVM_DUMP_METHOD void CallGraphNode::dump() const { print(dbgs()); }
183183
#endif
184184

@@ -292,7 +292,7 @@ void CallGraphWrapperPass::print(raw_ostream &OS, const Module *) const {
292292
G->print(OS);
293293
}
294294

295-
#ifdef LLVM_ENABLE_DUMP
295+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
296296
LLVM_DUMP_METHOD
297297
void CallGraphWrapperPass::dump() const { print(dbgs(), nullptr); }
298298
#endif

llvm/lib/Analysis/DependenceAnalysis.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ void DependenceInfo::Constraint::setAny(ScalarEvolution *NewSE) {
385385
Kind = Any;
386386
}
387387

388-
#ifdef LLVM_ENABLE_DUMP
388+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
389389
// For debugging purposes. Dumps the constraint out to OS.
390390
LLVM_DUMP_METHOD void DependenceInfo::Constraint::dump(raw_ostream &OS) const {
391391
if (isEmpty())

llvm/lib/Analysis/DominanceFrontier.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ void DominanceFrontierWrapperPass::print(raw_ostream &OS, const Module *) const
5959
DF.print(OS);
6060
}
6161

62-
#ifdef LLVM_ENABLE_DUMP
62+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
6363
LLVM_DUMP_METHOD void DominanceFrontierWrapperPass::dump() const {
6464
print(dbgs());
6565
}

llvm/lib/Analysis/IVUsers.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ void IVUsers::print(raw_ostream &OS, const Module *M) const {
340340
}
341341
}
342342

343-
#ifdef LLVM_ENABLE_DUMP
343+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
344344
LLVM_DUMP_METHOD void IVUsers::dump() const { print(dbgs()); }
345345
#endif
346346

llvm/lib/Analysis/InlineCost.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1698,7 +1698,7 @@ bool CallAnalyzer::analyzeCall(CallSite CS) {
16981698
return Cost < std::max(1, Threshold);
16991699
}
17001700

1701-
#ifdef LLVM_ENABLE_DUMP
1701+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
17021702
/// \brief Dump stats about this call's analysis.
17031703
LLVM_DUMP_METHOD void CallAnalyzer::dump() {
17041704
#define DEBUG_PRINT_STAT(x) dbgs() << " " #x ": " << x << "\n"

llvm/lib/Analysis/LazyCallGraph.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ void LazyCallGraph::Node::replaceFunction(Function &NewF) {
137137
F = &NewF;
138138
}
139139

140-
#ifdef LLVM_ENABLE_DUMP
140+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
141141
LLVM_DUMP_METHOD void LazyCallGraph::Node::dump() const {
142142
dbgs() << *this << '\n';
143143
}
@@ -207,7 +207,7 @@ LazyCallGraph &LazyCallGraph::operator=(LazyCallGraph &&G) {
207207
return *this;
208208
}
209209

210-
#ifdef LLVM_ENABLE_DUMP
210+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
211211
LLVM_DUMP_METHOD void LazyCallGraph::SCC::dump() const {
212212
dbgs() << *this << '\n';
213213
}
@@ -281,7 +281,7 @@ bool LazyCallGraph::SCC::isAncestorOf(const SCC &TargetC) const {
281281

282282
LazyCallGraph::RefSCC::RefSCC(LazyCallGraph &G) : G(&G) {}
283283

284-
#ifdef LLVM_ENABLE_DUMP
284+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
285285
LLVM_DUMP_METHOD void LazyCallGraph::RefSCC::dump() const {
286286
dbgs() << *this << '\n';
287287
}

llvm/lib/Analysis/LoopInfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ BasicBlock *Loop::getUniqueExitBlock() const {
440440
return nullptr;
441441
}
442442

443-
#ifdef LLVM_ENABLE_DUMP
443+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
444444
LLVM_DUMP_METHOD void Loop::dump() const { print(dbgs()); }
445445

446446
LLVM_DUMP_METHOD void Loop::dumpVerbose() const {

llvm/lib/Analysis/MemorySSA.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@ void MemorySSA::print(raw_ostream &OS) const {
16221622
F.print(OS, &Writer);
16231623
}
16241624

1625-
#ifdef LLVM_ENABLE_DUMP
1625+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
16261626
LLVM_DUMP_METHOD void MemorySSA::dump() const { print(dbgs()); }
16271627
#endif
16281628

@@ -1899,7 +1899,7 @@ void MemoryUse::print(raw_ostream &OS) const {
18991899

19001900
void MemoryAccess::dump() const {
19011901
// Cannot completely remove virtual function even in release mode.
1902-
#ifdef LLVM_ENABLE_DUMP
1902+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
19031903
print(dbgs());
19041904
dbgs() << "\n";
19051905
#endif

llvm/lib/Analysis/PHITransAddr.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ static bool CanPHITrans(Instruction *Inst) {
4141
return false;
4242
}
4343

44-
#ifdef LLVM_ENABLE_DUMP
44+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4545
LLVM_DUMP_METHOD void PHITransAddr::dump() const {
4646
if (!Addr) {
4747
dbgs() << "PHITransAddr: null\n";

llvm/lib/Analysis/RegionInfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ void RegionInfoPass::print(raw_ostream &OS, const Module *) const {
152152
RI.print(OS);
153153
}
154154

155-
#ifdef LLVM_ENABLE_DUMP
155+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
156156
LLVM_DUMP_METHOD void RegionInfoPass::dump() const {
157157
RI.dump();
158158
}

llvm/lib/Analysis/ScalarEvolution.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ static cl::opt<unsigned>
212212
// Implementation of the SCEV class.
213213
//
214214

215-
#ifdef LLVM_ENABLE_DUMP
215+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
216216
LLVM_DUMP_METHOD void SCEV::dump() const {
217217
print(dbgs());
218218
dbgs() << '\n';

llvm/lib/Analysis/Trace.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ void Trace::print(raw_ostream &O) const {
4444
O << "; Trace parent function: \n" << *F;
4545
}
4646

47-
#ifdef LLVM_ENABLE_DUMP
47+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
4848
/// dump - Debugger convenience method; writes trace to standard error
4949
/// output stream.
5050
LLVM_DUMP_METHOD void Trace::dump() const {

llvm/lib/Bitcode/Writer/ValueEnumerator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ unsigned ValueEnumerator::getValueID(const Value *V) const {
465465
return I->second-1;
466466
}
467467

468-
#ifdef LLVM_ENABLE_DUMP
468+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
469469
LLVM_DUMP_METHOD void ValueEnumerator::dump() const {
470470
print(dbgs(), ValueMap, "Default");
471471
dbgs() << '\n';

llvm/lib/CodeGen/AsmPrinter/DIE.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ void DIEAbbrev::print(raw_ostream &O) const {
127127
}
128128
}
129129

130-
#ifdef LLVM_ENABLE_DUMP
130+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
131131
LLVM_DUMP_METHOD void DIEAbbrev::dump() const {
132132
print(dbgs());
133133
}
@@ -267,7 +267,7 @@ void DIE::print(raw_ostream &O, unsigned IndentCount) const {
267267
O << "\n";
268268
}
269269

270-
#ifdef LLVM_ENABLE_DUMP
270+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
271271
LLVM_DUMP_METHOD void DIE::dump() const {
272272
print(dbgs());
273273
}
@@ -359,7 +359,7 @@ void DIEValue::print(raw_ostream &O) const {
359359
}
360360
}
361361

362-
#ifdef LLVM_ENABLE_DUMP
362+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
363363
LLVM_DUMP_METHOD void DIEValue::dump() const {
364364
print(dbgs());
365365
}

llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class DebugLocEntry {
7676
const DIExpression *getExpression() const { return Expression; }
7777
friend bool operator==(const Value &, const Value &);
7878
friend bool operator<(const Value &, const Value &);
79-
#ifdef LLVM_ENABLE_DUMP
79+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
8080
LLVM_DUMP_METHOD void dump() const {
8181
if (isLocation()) {
8282
llvm::dbgs() << "Loc = { reg=" << Loc.getReg() << " ";

llvm/lib/CodeGen/BranchRelaxation.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ void BranchRelaxation::verify() {
138138
#endif
139139
}
140140

141-
#ifdef LLVM_ENABLE_DUMP
141+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
142142
/// print block size and offset information - debugging
143143
LLVM_DUMP_METHOD void BranchRelaxation::dumpBBs() {
144144
for (auto &MBB : *MF) {

llvm/lib/CodeGen/CodeGenPrepare.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2750,7 +2750,7 @@ static inline raw_ostream &operator<<(raw_ostream &OS, const ExtAddrMode &AM) {
27502750
}
27512751
#endif
27522752

2753-
#ifdef LLVM_ENABLE_DUMP
2753+
#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
27542754
void ExtAddrMode::print(raw_ostream &OS) const {
27552755
bool NeedPlus = false;
27562756
OS << "[";

0 commit comments

Comments
 (0)