You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
415 B

# RUN: llvm-mc -arch=mips -mcpu=mips32 -filetype=obj %s -o - | \
# RUN: llvm-readobj --symbols - | FileCheck %s
# Check that the assembler doesn't choke on .align between a symbol and the
# .end directive.
.text
.globl a
.p2align 2
.type a,@function
.ent a
a:
addu $2, $5, $4
.align 4
jr $ra
.end a
$func_end0:
.size a, ($func_end0)-a
# CHECK: Name: a
# CHECK-NEXT: Value: 0x0
# CHECK-NEXT: Size: 24