mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
Remove unnecessary check of hasAVX(). It's already included in hasXMM().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@147734 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
704e1a0f04
commit
272cc580f8
@ -15380,7 +15380,7 @@ X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
|
|||||||
if (!Subtarget->hasXMMInt()) break;
|
if (!Subtarget->hasXMMInt()) break;
|
||||||
// FALL THROUGH.
|
// FALL THROUGH.
|
||||||
case 'x': // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
|
case 'x': // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
|
||||||
if (!Subtarget->hasXMM() && !Subtarget->hasAVX()) break;
|
if (!Subtarget->hasXMM()) break;
|
||||||
|
|
||||||
switch (VT.getSimpleVT().SimpleTy) {
|
switch (VT.getSimpleVT().SimpleTy) {
|
||||||
default: break;
|
default: break;
|
||||||
|
Loading…
Reference in New Issue
Block a user