From 06d2db25aaa71a8bb9f1cfb3bcb5ea007ab435ee Mon Sep 17 00:00:00 2001 From: kazutakahirata <57370056+kazutakahirata@users.noreply.github.com> Date: Wed, 6 Sep 2023 11:10:56 -0700 Subject: [PATCH] [ADT] Fix a comment typo (#65497) --- llvm/include/llvm/ADT/FloatingPointMode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);