xref: /aosp_15_r20/external/llvm/test/MC/ARM/dot-req-case-insensitive.s (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker@ RUN: llvm-mc -triple=arm < %s | FileCheck %s
2*9880d681SAndroid Build Coastguard Worker .syntax unified
3*9880d681SAndroid Build Coastguard Worker_foo:
4*9880d681SAndroid Build Coastguard Worker
5*9880d681SAndroid Build Coastguard Worker OBJECT .req r2
6*9880d681SAndroid Build Coastguard Worker mov r4, OBJECT
7*9880d681SAndroid Build Coastguard Worker mov r4, oBjEcT
8*9880d681SAndroid Build Coastguard Worker .unreq oBJECT
9*9880d681SAndroid Build Coastguard Worker
10*9880d681SAndroid Build Coastguard Worker_foo2:
11*9880d681SAndroid Build Coastguard Worker OBJECT .req r5
12*9880d681SAndroid Build Coastguard Worker mov r4, OBJECT
13*9880d681SAndroid Build Coastguard Worker .unreq OBJECT
14*9880d681SAndroid Build Coastguard Worker
15*9880d681SAndroid Build Coastguard Worker@ CHECK-LABEL: _foo:
16*9880d681SAndroid Build Coastguard Worker@ CHECK: mov r4, r2
17*9880d681SAndroid Build Coastguard Worker@ CHECK: mov r4, r2
18*9880d681SAndroid Build Coastguard Worker
19*9880d681SAndroid Build Coastguard Worker@ CHECK-LABEL: _foo2:
20*9880d681SAndroid Build Coastguard Worker@ CHECK: mov r4, r5
21