xref: /aosp_15_r20/external/llvm/test/MC/AArch64/dot-req-case-insensitive.s (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1*9880d681SAndroid Build Coastguard Worker// RUN: llvm-mc -triple=arm64-eabi < %s | FileCheck %s
2*9880d681SAndroid Build Coastguard Worker_foo:
3*9880d681SAndroid Build Coastguard Worker        OBJECT .req x2
4*9880d681SAndroid Build Coastguard Worker        mov x4, OBJECT
5*9880d681SAndroid Build Coastguard Worker        mov x4, oBjEcT
6*9880d681SAndroid Build Coastguard Worker        .unreq oBJECT
7*9880d681SAndroid Build Coastguard Worker
8*9880d681SAndroid Build Coastguard Worker_foo2:
9*9880d681SAndroid Build Coastguard Worker        OBJECT .req w5
10*9880d681SAndroid Build Coastguard Worker        mov w4, OBJECT
11*9880d681SAndroid Build Coastguard Worker        .unreq OBJECT
12*9880d681SAndroid Build Coastguard Worker
13*9880d681SAndroid Build Coastguard Worker// CHECK-LABEL: _foo:
14*9880d681SAndroid Build Coastguard Worker// CHECK: mov x4, x2
15*9880d681SAndroid Build Coastguard Worker// CHECK: mov x4, x2
16*9880d681SAndroid Build Coastguard Worker
17*9880d681SAndroid Build Coastguard Worker// CHECK-LABEL: _foo2:
18*9880d681SAndroid Build Coastguard Worker// CHECK: mov w4, w5
19