diff options
author | czhengsz <czhengsz@cn.ibm.com> | 2019-11-25 21:18:32 -0500 |
---|---|---|
committer | czhengsz <czhengsz@cn.ibm.com> | 2019-11-26 23:58:00 -0500 |
commit | 98189755cd98f6e1e22e03e55b951d3ed53a5ae5 (patch) | |
tree | 8e91530ec321fe9cc3da8057bcf6e9494025eab1 /llvm/lib/Target/PowerPC/PPC.h | |
parent | fd39b1bb20cec32c310ae9b6f1b4603c17a5f832 (diff) | |
download | bcm5719-llvm-98189755cd98f6e1e22e03e55b951d3ed53a5ae5.tar.gz bcm5719-llvm-98189755cd98f6e1e22e03e55b951d3ed53a5ae5.zip |
[PowerPC] [NFC] change PPCLoopPreIncPrep class name after D67088.
Afer https://reviews.llvm.org/D67088, PPCLoopPreIncPrep pass can prepare more instruction forms except pre inc form, like DS/DQ forms.
This patch is a follow-up of https://reviews.llvm.org/D67088 to rename the pass name.
Reviewed by: jsji
Differential Revision: https://reviews.llvm.org/D70371
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPC.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPC.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPC.h b/llvm/lib/Target/PowerPC/PPC.h index 5a830d22941..a83509f0e68 100644 --- a/llvm/lib/Target/PowerPC/PPC.h +++ b/llvm/lib/Target/PowerPC/PPC.h @@ -34,7 +34,7 @@ namespace llvm { #ifndef NDEBUG FunctionPass *createPPCCTRLoopsVerify(); #endif - FunctionPass *createPPCLoopPreIncPrepPass(PPCTargetMachine &TM); + FunctionPass *createPPCLoopInstrFormPrepPass(PPCTargetMachine &TM); FunctionPass *createPPCTOCRegDepsPass(); FunctionPass *createPPCEarlyReturnPass(); FunctionPass *createPPCVSXCopyPass(); @@ -60,7 +60,7 @@ namespace llvm { #ifndef NDEBUG void initializePPCCTRLoopsVerifyPass(PassRegistry&); #endif - void initializePPCLoopPreIncPrepPass(PassRegistry&); + void initializePPCLoopInstrFormPrepPass(PassRegistry&); void initializePPCTOCRegDepsPass(PassRegistry&); void initializePPCEarlyReturnPass(PassRegistry&); void initializePPCVSXCopyPass(PassRegistry&); |