[ADT] Fix a comment typo (#65497)

This commit is contained in:
kazutakahirata 2023-09-06 11:10:56 -07:00 committed by GitHub
parent 93f9f63b2d
commit 06d2db25aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);