[llvm] 3488113 - [NFC] Fixed indentation issue (#116942)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 20 01:14:06 PST 2024
Author: JaydeepChauhan14
Date: 2024-11-20T17:14:03+08:00
New Revision: 34881138ed94709d09f690a27cd457d6a830f123
URL: https://github.com/llvm/llvm-project/commit/34881138ed94709d09f690a27cd457d6a830f123
DIFF: https://github.com/llvm/llvm-project/commit/34881138ed94709d09f690a27cd457d6a830f123.diff
LOG: [NFC] Fixed indentation issue (#116942)
Added:
Modified:
llvm/lib/Target/X86/X86InstrAVX512.td
Removed:
################################################################################
diff --git a/llvm/lib/Target/X86/X86InstrAVX512.td b/llvm/lib/Target/X86/X86InstrAVX512.td
index 4094a1ba9b7903..7f854309eeed04 100644
--- a/llvm/lib/Target/X86/X86InstrAVX512.td
+++ b/llvm/lib/Target/X86/X86InstrAVX512.td
@@ -2619,9 +2619,9 @@ multiclass avx512_mask_mov<bits<8> opc_kk, bits<8> opc_km, bits<8> opc_mk,
X86MemOperand x86memop, string Suffix = ""> {
let isMoveReg = 1, hasSideEffects = 0, SchedRW = [WriteMove],
explicitOpPrefix = !if(!eq(Suffix, ""), NoExplicitOpPrefix, ExplicitEVEX) in
- def kk#Suffix : I<opc_kk, MRMSrcReg, (outs KRC:$dst), (ins KRC:$src),
- !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"), []>,
- Sched<[WriteMove]>;
+ def kk#Suffix : I<opc_kk, MRMSrcReg, (outs KRC:$dst), (ins KRC:$src),
+ !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"), []>,
+ Sched<[WriteMove]>;
def km#Suffix : I<opc_km, MRMSrcMem, (outs KRC:$dst), (ins x86memop:$src),
!strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
[(set KRC:$dst, (vvt (load addr:$src)))]>,
More information about the llvm-commits
mailing list