Skip to content

Commit 65cb5d5

Browse files
committed
[RISCV] Remove DecoderNamespace from vector pseudoinstructions.
Pseudoinstructions don't have decoding information so don't need a namespace.
1 parent 0e1a9e3 commit 65cb5d5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/lib/Target/RISCV/RISCVInstrInfoXSf.td

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -397,25 +397,25 @@ let Predicates = [HasVendorXSfvcp] in {
397397
}
398398
}
399399

400-
let Predicates = [HasVendorXSfvqmaccdod], DecoderNamespace = "XSfvqmaccdod" in {
400+
let Predicates = [HasVendorXSfvqmaccdod] in {
401401
defm VQMACCU_2x8x2 : VPseudoSiFiveVQMACC;
402402
defm VQMACC_2x8x2 : VPseudoSiFiveVQMACC;
403403
defm VQMACCUS_2x8x2 : VPseudoSiFiveVQMACC;
404404
defm VQMACCSU_2x8x2 : VPseudoSiFiveVQMACC;
405405
}
406406

407-
let Predicates = [HasVendorXSfvqmaccqoq], DecoderNamespace = "XSfvqmaccqoq" in {
407+
let Predicates = [HasVendorXSfvqmaccqoq] in {
408408
defm VQMACCU_4x8x4 : VPseudoSiFiveVQMACC;
409409
defm VQMACC_4x8x4 : VPseudoSiFiveVQMACC;
410410
defm VQMACCUS_4x8x4 : VPseudoSiFiveVQMACC;
411411
defm VQMACCSU_4x8x4 : VPseudoSiFiveVQMACC;
412412
}
413413

414-
let Predicates = [HasVendorXSfvfwmaccqqq], DecoderNamespace = "XSfvfwmaccqqq" in {
414+
let Predicates = [HasVendorXSfvfwmaccqqq] in {
415415
defm VFWMACC_4x4x4 : VPseudoSiFiveVFWMACC;
416416
}
417417

418-
let Predicates = [HasVendorXSfvfnrclipxfqf], DecoderNamespace = "XSfvfnrclipxfqf" in {
418+
let Predicates = [HasVendorXSfvfnrclipxfqf] in {
419419
defm VFNRCLIP_XU_F_QF : VPseudoSiFiveVFNRCLIP;
420420
defm VFNRCLIP_X_F_QF : VPseudoSiFiveVFNRCLIP;
421421
}

0 commit comments

Comments
 (0)