mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
af453b57a3
This patch switches the default for -riscv-no-aliases to false and updates all affected MC and CodeGen tests. As recommended in D41071, MC tests use the canonical instructions and the CodeGen tests use the aliases. Additionally, for the f and d instructions with rounding mode, the tests for the aliased versions are moved and tightened such that they can actually detect if alias emission is enabled. (see D40902 for context) Differential Revision: https://reviews.llvm.org/D41225 Patch by Mario Werner. llvm-svn: 320797
21 lines
722 B
ArmAsm
21 lines
722 B
ArmAsm
# RUN: llvm-mc %s -triple=riscv32 -riscv-no-aliases \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-INST %s
|
|
# RUN: llvm-mc %s -triple=riscv32 \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-ALIAS %s
|
|
# RUN: llvm-mc -filetype=obj -triple riscv32 < %s \
|
|
# RUN: | llvm-objdump -riscv-no-aliases -d - \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-INST %s
|
|
# RUN: llvm-mc -filetype=obj -triple riscv32 < %s \
|
|
# RUN: | llvm-objdump -d - \
|
|
# RUN: | FileCheck -check-prefixes=CHECK-ALIAS %s
|
|
|
|
# CHECK-INST: csrrs t4, 3202, zero
|
|
# CHECK-ALIAS: rdinstreth t4
|
|
rdinstreth x29
|
|
# CHECK-INST: csrrs s11, 3200, zero
|
|
# CHECK-ALIAS: rdcycleh s11
|
|
rdcycleh x27
|
|
# CHECK-INST: csrrs t3, 3201, zero
|
|
# CHECK-ALIAS: rdtimeh t3
|
|
rdtimeh x28
|