Skip to content

Commit 9b656df

Browse files
badumbatishaahrun
authored andcommitted
Fix typo in attr.td: Avaiable -> Available (llvm#170116)
Follow up to llvm#163618
1 parent 9be9671 commit 9b656df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/include/clang/Basic/Attr.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ def TargetMicrosoftRecordLayout : TargetArch<["x86", "x86_64", "arm", "thumb",
508508
let CustomCode = [{ Target.hasMicrosoftRecordLayout() }];
509509
}
510510

511-
def TargetMustTailAvaiable: TargetSpec {
511+
def TargetMustTailAvailable: TargetSpec {
512512
let CustomCode = [{ Target.hasMustTail() }];
513513
}
514514

@@ -1917,7 +1917,7 @@ def NoMerge : DeclOrStmtAttr {
19171917
"functions, statements and variables">;
19181918
}
19191919

1920-
def MustTail : StmtAttr, TargetSpecificAttr<TargetMustTailAvaiable> {
1920+
def MustTail : StmtAttr, TargetSpecificAttr<TargetMustTailAvailable> {
19211921
let Spellings = [Clang<"musttail">];
19221922
let Documentation = [MustTailDocs];
19231923
let Subjects = SubjectList<[ReturnStmt], ErrorDiag, "return statements">;

0 commit comments

Comments
 (0)