mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
859dccec1f
More updating of tests to be explicit about the target triple rather than relying on the default target triple supporting ARM mode. Indicate to lit that object emission is not yet available for Windows on ARM. llvm-svn: 205545
25 lines
1006 B
ArmAsm
25 lines
1006 B
ArmAsm
@ RUN: llvm-mc -show-encoding -triple=arm-eabi < %s \
|
|
@ RUN: | FileCheck %s --check-prefix=CHECK-ARM-ONLY
|
|
|
|
@ RUN: llvm-mc -show-encoding -triple=armv4t-eabi < %s \
|
|
@ RUN: | FileCheck %s --check-prefix=CHECK-ARM-THUMB
|
|
|
|
@ RUN: llvm-mc -show-encoding -triple=arm-eabi -mcpu=cortex-a15 < %s \
|
|
@ RUN: | FileCheck %s --check-prefix=CHECK-ARM-THUMB
|
|
|
|
@ RUN: llvm-mc -show-encoding -triple=arm-eabi -mcpu=cortex-m3 < %s \
|
|
@ RUN: | FileCheck %s --check-prefix=CHECK-THUMB-ONLY
|
|
|
|
@ RUN: llvm-mc -show-encoding -triple=armv7m-eabi < %s \
|
|
@ RUN: | FileCheck %s --check-prefix=CHECK-THUMB-ONLY
|
|
|
|
@ RUN: llvm-mc -show-encoding -triple=armv6m-eabi < %s \
|
|
@ RUN: | FileCheck %s --check-prefix=CHECK-THUMB-ONLY
|
|
|
|
@ Make sure the architecture chosen by LLVM defaults to a compatible
|
|
@ ARM/Thumb mode.
|
|
movs r0, r0
|
|
@ CHECK-ARM-THUMB: movs r0, r0 @ encoding: [0x00,0x00,0xb0,0xe1]
|
|
@ CHECK-ARM-ONLY: movs r0, r0 @ encoding: [0x00,0x00,0xb0,0xe1]
|
|
@ CHECK-THUMB-ONLY: movs r0, r0 @ encoding: [0x00,0x00]
|