1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 20:23:11 +01:00
llvm-mirror/test/MC/ARM/bkpt.s
Dmitri Gribenko 124904ab05 Fixed typos in tests: s/CEHCK/CHECK/
Reviewers: ilya-biryukov

Subscribers: sanjoy, sdardis, javed.absar, jrtc27, atanasyan, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D58608

llvm-svn: 354781
2019-02-25 13:12:33 +00:00

33 lines
530 B
ArmAsm

@ RUN: llvm-mc -triple armv7-unknown-unknown -filetype asm -o - %s | FileCheck %s
.syntax unified
.thumb
.global thumb_default_bkpt
.type thumb_default_bkpt, %function
.thumb_func
thumb_default_bkpt:
bkpt
@ CHECK-LABEL: thumb_default_bkpt
@ CHECK: bkpt #0
.global normal_bkpt
.type normal_bkpt, %function
normal_bkpt:
bkpt #42
@ CHECK-LABEL: normal_bkpt
@ CHECK: bkpt #42
.arm
.global arm_default_bkpt
.type arm_default_bkpt, %function
arm_default_bkpt:
bkpt
@ CHECK-LABEL: arm_default_bkpt
@ CHECK: bkpt #0