[llvm] b50327e - [llvm][PPCISelDAGToDAG] rename ppc-codegen to ppc-isel

Nick Desaulniers via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 9 15:31:05 PST 2023


Author: Nick Desaulniers
Date: 2023-01-09T15:24:25-08:00
New Revision: b50327eea603358846743ff784ddf2099fc35587

URL: https://github.com/llvm/llvm-project/commit/b50327eea603358846743ff784ddf2099fc35587
DIFF: https://github.com/llvm/llvm-project/commit/b50327eea603358846743ff784ddf2099fc35587.diff

LOG: [llvm][PPCISelDAGToDAG] rename ppc-codegen to ppc-isel

Every other subclass of SelectionDAGISel calls this pass "<arch>-isel".
No existing tests refer to ppc-codegen so this is purely a cosmetic
change to bring the pass name in line with other architecture's
SelectionDAGISel subclasses.

Reviewed By: MaskRay

Differential Revision: https://reviews.llvm.org/D140497

Added: 
    

Modified: 
    llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp b/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
index 176b49a8f130..d80a33ff6064 100644
--- a/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
+++ b/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
@@ -68,7 +68,7 @@
 
 using namespace llvm;
 
-#define DEBUG_TYPE "ppc-codegen"
+#define DEBUG_TYPE "ppc-isel"
 #define PASS_NAME "PowerPC DAG->DAG Pattern Instruction Selection"
 
 STATISTIC(NumSextSetcc,


        


More information about the llvm-commits mailing list