Skip to content

Commit 4c69385

Browse files
committed
Fix incorrect OPF value.
1 parent 9db1188 commit 4c69385

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

llvm/lib/Target/Sparc/SparcInstrVIS.td

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,11 @@ def SHUTDOWN : VISInst0<0b010000000, "shutdown">;
148148
let Predicates = [HasVIS2] in {
149149

150150
def BMASK : VISInst<0b000011001, "bmask", I64Regs>;
151-
def BSHUFFLE : VISInst<0b000011100, "bshuffle">;
151+
// Capstone NOTE:
152+
// BSHUFFLE was silently fixed with
153+
// https://github.com/llvm/llvm-project/commit/ebacd46996a7f041be73cf31b5776503e8061e8b
154+
// On rebase this can be reverted.
155+
def BSHUFFLE : VISInst<0b001001100, "bshuffle">;
152156

153157
def SIAM : VISInst0<0b010000001, "siam">;
154158

0 commit comments

Comments
 (0)