[clang] [llvm] [X86][MC,Driver] Support -msse2avx to encode SSE instruction with VEX prefix (PR #96860)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 15 10:02:49 PDT 2024
================
@@ -2711,6 +2711,8 @@ static void CollectArgsForIntegratedAssembler(Compilation &C,
}
if (!UseRelaxRelocations)
CmdArgs.push_back("-mrelax-relocations=no");
+ if (Args.hasArg(options::OPT_msse2avx))
+ CmdArgs.push_back("-msse2avx");
----------------
JaydeepChauhan14 wrote:
Done
https://github.com/llvm/llvm-project/pull/96860
More information about the cfe-commits
mailing list