Xamarin Public Jenkins (auto-signing) f32dbaf0b2 Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
2018-12-21 19:01:49 +00:00

23 lines
412 B
ArmAsm

# 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