Skip to content

Commit a922525

Browse files
committed
[AArch64] Remove SLI/SRI debug. NFC
We don't usually have special debug for DAG combines, and this one has been around long enough to not be required any more.
1 parent 39f1190 commit a922525

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

llvm/lib/Target/AArch64/AArch64ISelLowering.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ using namespace llvm::PatternMatch;
108108
#define DEBUG_TYPE "aarch64-lower"
109109

110110
STATISTIC(NumTailCalls, "Number of tail calls");
111-
STATISTIC(NumShiftInserts, "Number of vector shift inserts");
112111
STATISTIC(NumOptimizedImms, "Number of times immediates were optimized");
113112

114113
// FIXME: The necessary dtprel relocations don't seem to be supported
@@ -14581,12 +14580,6 @@ static SDValue tryLowerToSLI(SDNode *N, SelectionDAG &DAG) {
1458114580
unsigned Inst = IsShiftRight ? AArch64ISD::VSRI : AArch64ISD::VSLI;
1458214581
SDValue ResultSLI = DAG.getNode(Inst, DL, VT, X, Y, Imm);
1458314582

14584-
LLVM_DEBUG(dbgs() << "aarch64-lower: transformed: \n");
14585-
LLVM_DEBUG(N->dump(&DAG));
14586-
LLVM_DEBUG(dbgs() << "into: \n");
14587-
LLVM_DEBUG(ResultSLI->dump(&DAG));
14588-
14589-
++NumShiftInserts;
1459014583
return ResultSLI;
1459114584
}
1459214585

0 commit comments

Comments
 (0)