[llvm] [X86][MC] Added support for -msse2avx option in llvm-mc (PR #96860)
Shengchen Kan via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 2 02:09:51 PDT 2024
================
@@ -16,7 +16,7 @@ MCTargetOptions::MCTargetOptions()
MCNoWarn(false), MCNoDeprecatedWarn(false), MCNoTypeCheck(false),
MCSaveTempLabels(false), MCIncrementalLinkerCompatible(false),
FDPIC(false), ShowMCEncoding(false), ShowMCInst(false), AsmVerbose(false),
- PreserveAsmComments(true), Dwarf64(false),
+ SSE2AVX(false), PreserveAsmComments(true), Dwarf64(false),
----------------
KanRobert wrote:
Maybe we can drop the change in this file after applying the suggestion
https://github.com/llvm/llvm-project/pull/96860#discussion_r1661919071
`bool SSE2AVX : 1;` to `bool SSE2AVX = false`
https://github.com/llvm/llvm-project/pull/96860
More information about the llvm-commits
mailing list