13 lines
372 B
Text
13 lines
372 B
Text
|
@ RUN: llvm-mc %s -triple thumbv7-apple-darwin -mcpu=cortex-a7 -filetype=obj -o %t.o
|
||
|
@ RUN: llvm-objdump --triple thumbv7-apple-darwin10 -m -d --mcpu=cortex-a7 %t.o | FileCheck %s
|
||
|
@ RUN: llvm-otool -tv -mcpu=cortex-a7 %t.o | FileCheck %s
|
||
|
|
||
|
.thumb
|
||
|
.thumb_func _t
|
||
|
_t:
|
||
|
sdiv r1, r2, r3
|
||
|
udiv r1, r2, r3
|
||
|
|
||
|
@ CHECK: 92 fb f3 f1 sdiv r1, r2, r3
|
||
|
@ CHECK: b2 fb f3 f1 udiv r1, r2, r3
|