Skip to content

Commit ed5e37b

Browse files
committed
Fix a LLVM_DEBUG
1 parent 2ebb15e commit ed5e37b

File tree

1 file changed

+2
-1
lines changed
  • clang-tools-extra/pseudo/lib

1 file changed

+2
-1
lines changed

clang-tools-extra/pseudo/lib/GLR.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,8 @@ class GLRReduce {
527527
SequenceNodes.size() == 1
528528
? SequenceNodes.front()
529529
: &Params.Forest.createAmbiguous(F.Symbol, SequenceNodes);
530-
LLVM_DEBUG(llvm::dbgs() << " --> " << Parsed->dump(Lang.G) << "\n");
530+
LLVM_DEBUG(llvm::dbgs()
531+
<< " --> " << Parsed->dump(Lang.G, std::nullopt) << "\n");
531532

532533
// Bases for this family, deduplicate them, and group by the goTo State.
533534
sortAndUnique(FamilyBases);

0 commit comments

Comments
 (0)