[llvm] 06d2db2 - [ADT] Fix a comment typo (#65497)

via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 6 11:11:00 PDT 2023


Author: kazutakahirata
Date: 2023-09-06T11:10:56-07:00
New Revision: 06d2db25aaa71a8bb9f1cfb3bcb5ea007ab435ee

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

LOG: [ADT] Fix a comment typo (#65497)

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ADT/FloatingPointMode.h b/llvm/include/llvm/ADT/FloatingPointMode.h
index 6aeabd17b7dde4..d80a811fd447a7 100644
--- a/llvm/include/llvm/ADT/FloatingPointMode.h
+++ b/llvm/include/llvm/ADT/FloatingPointMode.h
@@ -222,7 +222,7 @@ inline DenormalMode parseDenormalFPAttribute(StringRef Str) {
   DenormalMode Mode;
   Mode.Output = parseDenormalFPAttributeComponent(OutputStr);
 
-  // Maintain compatability with old form of the attribute which only specified
+  // Maintain compatibility with old form of the attribute which only specified
   // one component.
   Mode.Input = InputStr.empty() ? Mode.Output  :
                parseDenormalFPAttributeComponent(InputStr);


        


More information about the llvm-commits mailing list