[llvm] c88b3c9 - [VE][NFC] Correct debug message spacing
Kazushi Marukawa via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 15 20:55:48 PDT 2023
Author: Kazushi (Jam) Marukawa
Date: 2023-08-16T12:54:38+09:00
New Revision: c88b3c99037df464e5ed67a827e1e57920a24784
URL: https://github.com/llvm/llvm-project/commit/c88b3c99037df464e5ed67a827e1e57920a24784
DIFF: https://github.com/llvm/llvm-project/commit/c88b3c99037df464e5ed67a827e1e57920a24784.diff
LOG: [VE][NFC] Correct debug message spacing
Added:
Modified:
llvm/lib/Target/VE/VEISelLowering.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/VE/VEISelLowering.cpp b/llvm/lib/Target/VE/VEISelLowering.cpp
index 1ebfa5330d42b0..d208fa06dfc8a3 100644
--- a/llvm/lib/Target/VE/VEISelLowering.cpp
+++ b/llvm/lib/Target/VE/VEISelLowering.cpp
@@ -1871,7 +1871,7 @@ VETargetLowering::getCustomOperationAction(SDNode &Op) const {
}
SDValue VETargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
- LLVM_DEBUG(dbgs() << "::LowerOperation"; Op->print(dbgs()););
+ LLVM_DEBUG(dbgs() << "::LowerOperation "; Op.dump(&DAG));
unsigned Opcode = Op.getOpcode();
/// Scalar isel.
@@ -1922,7 +1922,6 @@ SDValue VETargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
}
/// Vector isel.
- LLVM_DEBUG(dbgs() << "::LowerOperation_VVP"; Op->print(dbgs()););
if (ISD::isVPOpcode(Opcode))
return lowerToVVP(Op, DAG);
More information about the llvm-commits
mailing list