mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-03 13:31:05 +00:00
Minor indentation fix to match other switch statements. Change llvm_unreachable text to match similar places.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198116 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
89aeb02b71
commit
93bc4bb603
@ -12033,7 +12033,7 @@ static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
|
||||
case Intrinsic::x86_avx512_gather_dpi_512: {
|
||||
unsigned Opc;
|
||||
switch (IntNo) {
|
||||
default: llvm_unreachable("Unexpected intrinsic!");
|
||||
default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
|
||||
case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
|
||||
case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
|
||||
case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
|
||||
@ -12060,7 +12060,7 @@ static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
|
||||
case Intrinsic::x86_avx512_gather_dpq_mask_512: {
|
||||
unsigned Opc;
|
||||
switch (IntNo) {
|
||||
default: llvm_unreachable("Unexpected intrinsic!");
|
||||
default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
|
||||
case Intrinsic::x86_avx512_gather_qps_mask_512:
|
||||
Opc = X86::VGATHERQPSZrm; break;
|
||||
case Intrinsic::x86_avx512_gather_qpd_mask_512:
|
||||
@ -12098,7 +12098,7 @@ static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
|
||||
case Intrinsic::x86_avx512_scatter_dpi_512: {
|
||||
unsigned Opc;
|
||||
switch (IntNo) {
|
||||
default: llvm_unreachable("Unexpected intrinsic!");
|
||||
default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
|
||||
case Intrinsic::x86_avx512_scatter_qpd_512:
|
||||
Opc = X86::VSCATTERQPDZmr; break;
|
||||
case Intrinsic::x86_avx512_scatter_qps_512:
|
||||
@ -12134,7 +12134,7 @@ static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
|
||||
case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
|
||||
unsigned Opc;
|
||||
switch (IntNo) {
|
||||
default: llvm_unreachable("Unexpected intrinsic!");
|
||||
default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
|
||||
case Intrinsic::x86_avx512_scatter_qpd_mask_512:
|
||||
Opc = X86::VSCATTERQPDZmr; break;
|
||||
case Intrinsic::x86_avx512_scatter_qps_mask_512:
|
||||
|
Loading…
Reference in New Issue
Block a user