1# RUN: not llvm-mc -triple=riscv64 --mattr=+zve64x --mattr=+zvbb %s 2>&1 \ 2# RUN: | FileCheck %s --check-prefix=CHECK-ERROR 3 4vwsll.vv v2, v2, v4 5# CHECK-ERROR: the destination vector register group cannot overlap the source vector register group 6# CHECK-ERROR-LABEL: vwsll.vv v2, v2, v4 7 8vwsll.vx v2, v2, x10 9# CHECK-ERROR: the destination vector register group cannot overlap the source vector register group 10# CHECK-ERROR-LABEL: vwsll.vx v2, v2, x10 11 12vwsll.vi v2, v2, 1 13# CHECK-ERROR: the destination vector register group cannot overlap the source vector register group 14# CHECK-ERROR-LABEL: vwsll.vi v2, v2, 1 15