[llvm] 67c14d5 - [MachinePipeliner] Fix isPseduo typo.

Thomas Preud'homme via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 9 07:27:19 PST 2022


Author: Thomas Preud'homme
Date: 2022-03-09T15:26:39Z
New Revision: 67c14d5c694de8c98f4d6bb0e96a4ece89610465

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

LOG: [MachinePipeliner] Fix isPseduo typo.

Added: 
    

Modified: 
    llvm/lib/CodeGen/MachinePipeliner.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/CodeGen/MachinePipeliner.cpp b/llvm/lib/CodeGen/MachinePipeliner.cpp
index 762395542b401..e8ce9c36886d8 100644
--- a/llvm/lib/CodeGen/MachinePipeliner.cpp
+++ b/llvm/lib/CodeGen/MachinePipeliner.cpp
@@ -2998,7 +2998,7 @@ bool ResourceManager::canReserveResources(const MCInstrDesc *MID) const {
   if (!SCDesc->isValid()) {
     LLVM_DEBUG({
       dbgs() << "No valid Schedule Class Desc for schedClass!\n";
-      dbgs() << "isPseduo:" << MID->isPseudo() << "\n";
+      dbgs() << "isPseudo:" << MID->isPseudo() << "\n";
     });
     return true;
   }
@@ -3038,7 +3038,7 @@ void ResourceManager::reserveResources(const MCInstrDesc *MID) {
   if (!SCDesc->isValid()) {
     LLVM_DEBUG({
       dbgs() << "No valid Schedule Class Desc for schedClass!\n";
-      dbgs() << "isPseduo:" << MID->isPseudo() << "\n";
+      dbgs() << "isPseudo:" << MID->isPseudo() << "\n";
     });
     return;
   }


        


More information about the llvm-commits mailing list