mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
6cd76408bf
This patch updates tests using llvm-readobj and llvm-readelf, because soon reading from stdin will be achievable only via a '-' as described here: https://bugs.llvm.org/show_bug.cgi?id=46400. Patch with changes to llvm-readobj behavior is here: https://reviews.llvm.org/D83704 Differential Revision: https://reviews.llvm.org/D83912 Reviewed by: jhenderson, MaskRay, grimar
23 lines
415 B
ArmAsm
23 lines
415 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
|