reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
// RUN: llvm-mc -triple=arm64-eabi < %s | FileCheck %s
_foo:
        OBJECT .req x2
        mov x4, OBJECT
        mov x4, oBjEcT
        .unreq oBJECT

_foo2:
        OBJECT .req w5
        mov w4, OBJECT
        .unreq OBJECT

// CHECK-LABEL: _foo:
// CHECK: mov x4, x2
// CHECK: mov x4, x2

// CHECK-LABEL: _foo2:
// CHECK: mov w4, w5