23 lines · plain
1# RUN: llvm-mc -triple=mips -mcpu=mips32 -filetype=obj %s -o - | \2# RUN: llvm-readobj --symbols - | FileCheck %s3 4# Check that the assembler doesn't choke on .align between a symbol and the5# .end directive.6 7 .text8 .globl a9 .p2align 210 .type a,@function11 .ent a12a:13 addu $2, $5, $414 .align 415 jr $ra16 .end a17$func_end0:18 .size a, ($func_end0)-a19 20# CHECK: Name: a21# CHECK-NEXT: Value: 0x022# CHECK-NEXT: Size: 2423