[clang] [clang] Support -Wa, options -mmsa and -mno-msa (PR #99615)
Fangrui Song via cfe-commits
cfe-commits at lists.llvm.org
Thu Aug 15 14:42:43 PDT 2024
================
@@ -2630,6 +2631,10 @@ static void CollectArgsForIntegratedAssembler(Compilation &C,
CmdArgs.push_back("-massembler-no-warn");
} else if (Value == "--noexecstack") {
UseNoExecStack = true;
+ } else if (Value == "-mmsa") {
----------------
MaskRay wrote:
This code block should be moved above to the `switch`. There is a `case llvm::Triple::mips:` for MIPS.
https://github.com/llvm/llvm-project/pull/99615
More information about the cfe-commits
mailing list