mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
x86: Add missing break to getCallPreservedMask()
This change brings getCallPreservedMask()'s logic in line with getCalleeSavedRegs(). While this changes the control flow slightly, the change is not currently observable. is64Bit must be false to get to the accidental fallthrough, but the case that we fall into (coldcc) does nothing unless is64Bit is true. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203943 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
71e585e4ce
commit
4fc4769a53
@ -316,6 +316,7 @@ X86RegisterInfo::getCallPreservedMask(CallingConv::ID CC) const {
|
||||
return CSR_64_Intel_OCL_BI_AVX_RegMask;
|
||||
if (!HasAVX && !IsWin64 && Is64Bit)
|
||||
return CSR_64_Intel_OCL_BI_RegMask;
|
||||
break;
|
||||
}
|
||||
case CallingConv::Cold:
|
||||
if (Is64Bit)
|
||||
|
Loading…
Reference in New Issue
Block a user