brintos

brintos / llvm-project-archived public Read only

0
0
Text · 738 B · 37561a6 Raw
46 lines · plain
1# RUN: llvm-mc -triple=x86_64 %s | FileCheck %s2 3# CHECK:              .globl  inside_at_04# CHECK-NEXT:         .globl  inside_plus_05# CHECK-NEXT: inside_at_0:6# CHECK-NEXT: inside_plus_0:7# CHECK-NEXT:         .globl  after_at_08# CHECK-NEXT:         .globl  after_plus_09# CHECK-NEXT: after_at_0:10# CHECK-NEXT: after_plus_0:11 12.macro outer113  .macro inner114    .globl inside_at_\@15    .globl inside_plus_\+16    inside_at_\@:17    inside_plus_\+:18  .endm19  inner120  .globl after_at_\@21  .globl after_plus_\+22  after_at_\@:23  after_plus_\+:24.endm25 26outer127 28# PR1859929.macro macro_a30 .macro macro_b31  .byte 1032  .macro macro_c33  .endm34 35  macro_c36  .purgem macro_c37 .endm38 39 macro_b40.endm41 42# CHECK: .byte 1043# CHECK: .byte 1044macro_a45macro_b46