Skip to content

Commit c9e5cbc

Browse files
Remove debug output for trivial copy constructor
Removed debug output for successful trivial copy constructor detection.
1 parent c2aa41e commit c9e5cbc

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

clang/lib/CIR/Dialect/Transforms/LoweringPrepare.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1094,7 +1094,6 @@ void LoweringPreparePass::lowerTrivialCopyCall(cir::CallOp op) {
10941094
std::optional<cir::CtorKind> ctorKind = funcOp.getCxxConstructorKind();
10951095
if (ctorKind && *ctorKind == cir::CtorKind::Copy &&
10961096
funcOp.isCxxTrivialMemberFunction()) {
1097-
llvm::outs() << "success \n";
10981097
// Replace the trivial copy constructor call with a `CopyOp`
10991098
CIRBaseBuilderTy builder(getContext());
11001099
mlir::ValueRange operands = op.getOperands();

0 commit comments

Comments
 (0)