aboutsummaryrefslogtreecommitdiffstats
path: root/test/MC/ARM/bkpt.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/MC/ARM/bkpt.s')
-rw-r--r--test/MC/ARM/bkpt.s32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/MC/ARM/bkpt.s b/test/MC/ARM/bkpt.s
new file mode 100644
index 0000000..fcd4040
--- /dev/null
+++ b/test/MC/ARM/bkpt.s
@@ -0,0 +1,32 @@
+@ 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
+
+@ CEHCK-LABEL: arm_default_bkpt
+@ CHECK: bkpt #0
+