Skip to content

Commit 0b2094c

Browse files
committed
[Clang] [NFC] Remove debug printing
1 parent ef67f31 commit 0b2094c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

clang/lib/Sema/SemaStmtAttr.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -684,10 +684,8 @@ ExprResult Sema::ActOnCXXAssumeAttr(Stmt *St, const ParsedAttr &A,
684684
}
685685

686686
if (!getLangOpts().CPlusPlus23 &&
687-
A.getSyntax() == AttributeCommonInfo::AS_CXX11) {
688-
llvm::dbgs() << "Syntax: " << int(A.getSyntax()) << "\n";
687+
A.getSyntax() == AttributeCommonInfo::AS_CXX11)
689688
Diag(A.getLoc(), diag::ext_cxx23_attr) << A << Range;
690-
}
691689

692690
return Assumption;
693691
}

0 commit comments

Comments
 (0)