[clang] 1ac52ec - [NFC]Update -fsplit-machine-functions now aarch64 function splitting is supported (#122860)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Jan 13 21:35:55 PST 2025
Author: Mingming Liu
Date: 2025-01-13T21:35:52-08:00
New Revision: 1ac52ec40acfcc039ab830404e7f7ac72dfe8480
URL: https://github.com/llvm/llvm-project/commit/1ac52ec40acfcc039ab830404e7f7ac72dfe8480
DIFF: https://github.com/llvm/llvm-project/commit/1ac52ec40acfcc039ab830404e7f7ac72dfe8480.diff
LOG: [NFC]Update -fsplit-machine-functions now aarch64 function splitting is supported (#122860)
With https://reviews.llvm.org/D157157, mfs is supported on aarch64.
Added:
Modified:
clang/include/clang/Driver/Options.td
Removed:
################################################################################
diff --git a/clang/include/clang/Driver/Options.td b/clang/include/clang/Driver/Options.td
index bbf5c0e7e7fd1a..7c41d38e00a492 100644
--- a/clang/include/clang/Driver/Options.td
+++ b/clang/include/clang/Driver/Options.td
@@ -4364,7 +4364,7 @@ defm split_machine_functions: BoolFOption<"split-machine-functions",
CodeGenOpts<"SplitMachineFunctions">, DefaultFalse,
PosFlag<SetTrue, [], [ClangOption, CC1Option], "Enable">,
NegFlag<SetFalse, [], [ClangOption], "Disable">,
- BothFlags<[], [ClangOption], " late function splitting using profile information (x86 ELF)">>;
+ BothFlags<[], [ClangOption], " late function splitting using profile information (x86 and aarch64 ELF)">>;
defm strict_return : BoolFOption<"strict-return",
CodeGenOpts<"StrictReturn">, DefaultTrue,
More information about the cfe-commits
mailing list