[llvm] 4b22ffe - CycleInfo: Fix trivial typo. NFC.

Carl Ritson via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 17 00:06:54 PST 2022


Author: Carl Ritson
Date: 2022-01-17T17:06:45+09:00
New Revision: 4b22ffe0b96ab962ff454d22b8f2170c7d26b452

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

LOG: CycleInfo: Fix trivial typo. NFC.

Added: 
    

Modified: 
    llvm/include/llvm/ADT/GenericCycleInfo.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ADT/GenericCycleInfo.h b/llvm/include/llvm/ADT/GenericCycleInfo.h
index aad704301e43d..7768253e121d9 100644
--- a/llvm/include/llvm/ADT/GenericCycleInfo.h
+++ b/llvm/include/llvm/ADT/GenericCycleInfo.h
@@ -41,8 +41,8 @@
 
 namespace llvm {
 
-template <typename ContexT> class GenericCycleInfo;
-template <typename ContexT> class GenericCycleInfoCompute;
+template <typename ContextT> class GenericCycleInfo;
+template <typename ContextT> class GenericCycleInfoCompute;
 
 /// A possibly irreducible generalization of a \ref Loop.
 template <typename ContextT> class GenericCycle {


        


More information about the llvm-commits mailing list