Skip to content

Commit 8bef9d1

Browse files
[AArch64] Remove an unnecessary cast (NFC) (llvm#147452)
Kind is already of MCLOHType.
1 parent 0717657 commit 8bef9d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7405,7 +7405,7 @@ bool AArch64AsmParser::parseDirectiveLOH(StringRef IDVal, SMLoc Loc) {
74057405
if (parseEOL())
74067406
return true;
74077407

7408-
getStreamer().emitLOHDirective((MCLOHType)Kind, Args);
7408+
getStreamer().emitLOHDirective(Kind, Args);
74097409
return false;
74107410
}
74117411

0 commit comments

Comments
 (0)