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
# RUN: not llvm-mc -filetype=obj -triple armv7-linux-gnueabi %s -o - 2>&1 | FileCheck %s

        # We cannot switch subtargets mid-bundle
        .syntax unified
        .text
        .bundle_align_mode 4
        .arch armv4t
        bx lr
        .bundle_lock
        bx lr
        .arch armv7a
        movt r0, #0xffff
        movw r0, #0xffff
        .bundle_unlock
        bx lr
# CHECK: LLVM ERROR: A Bundle can only have one Subtarget.