diff --git a/llvm/include/llvm/ADT/FloatingPointMode.h b/llvm/include/llvm/ADT/FloatingPointMode.h index 6aeabd17b7dd..d80a811fd447 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);