-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
71 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,18 @@ | ||
# RUN: llvm-mc -triple=riscv32 --mattr=+xcvalu -show-encoding %s \ | ||
# RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INSTR | ||
|
||
cv.sle t0, t1, t2 | ||
# CHECK-INSTR: cv.sle t0, t1, t2 | ||
# CHECK-ENCODING: [0xab,0x32,0x73,0x52] | ||
|
||
cv.sle a0, a1, a2 | ||
# CHECK-INSTR: cv.sle a0, a1, a2 | ||
# CHECK-ENCODING: [0x2b,0xb5,0xc5,0x52] | ||
|
||
cv.slet t0, t1, t2 | ||
# CHECK-INSTR: cv.slet t0, t1, t2 | ||
# CHECK-INSTR: cv.sle t0, t1, t2 | ||
# CHECK-ENCODING: [0xab,0x32,0x73,0x52] | ||
|
||
cv.slet a0, a1, a2 | ||
# CHECK-INSTR: cv.slet a0, a1, a2 | ||
# CHECK-INSTR: cv.sle a0, a1, a2 | ||
# CHECK-ENCODING: [0x2b,0xb5,0xc5,0x52] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# RUN: llvm-mc -triple=riscv32 --mattr=+xcvalu -show-encoding %s \ | ||
# RUN: | FileCheck %s --check-prefixes=CHECK-ENCODING,CHECK-INSTR | ||
|
||
cv.sletu t0, t1, t2 | ||
# CHECK-INSTR: cv.sletu t0, t1, t2 | ||
cv.sleu t0, t1, t2 | ||
# CHECK-INSTR: cv.sleu t0, t1, t2 | ||
# CHECK-ENCODING: [0xab,0x32,0x73,0x54] | ||
|
||
cv.sletu a0, a1, a2 | ||
# CHECK-INSTR: cv.sletu a0, a1, a2 | ||
cv.sleu a0, a1, a2 | ||
# CHECK-INSTR: cv.sleu a0, a1, a2 | ||
# CHECK-ENCODING: [0x2b,0xb5,0xc5,0x54] |