mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +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
29 lines
1.3 KiB
ArmAsm
29 lines
1.3 KiB
ArmAsm
// RUN: llvm-mc -filetype=obj -triple i686-pc-linux-gnu %s -o - | llvm-readobj -S --sd - | FileCheck %s -check-prefix=CHECK -check-prefix=ELF
|
|
// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -S --sd - | FileCheck %s -check-prefix=CHECK -check-prefix=ELF
|
|
// RUN: llvm-mc -filetype=obj -triple i386-apple-darwin9 %s -o - | llvm-readobj -S --sd - | FileCheck %s -check-prefix=CHECK -check-prefix=MACHO
|
|
// RUN: llvm-mc -filetype=obj -triple x86_64-apple-darwin9 %s -o - | llvm-readobj -S --sd - | FileCheck %s -check-prefix=CHECK -check-prefix=MACHO
|
|
|
|
// Test that we can assemble a GCC-like EH table that has 16381-16383 bytes of
|
|
// non-padding data between .ttbaseref and .ttbase. The assembler must insert
|
|
// extra padding either into the uleb128 or at the balign directive. See
|
|
// PR35809.
|
|
|
|
.data
|
|
.balign 4
|
|
foo:
|
|
.byte 0xff // LPStart omitted
|
|
.byte 0x1 // TType encoding (uleb128)
|
|
.uleb128 .ttbase-.ttbaseref
|
|
.ttbaseref:
|
|
.fill 128*128-1, 1, 0xcd // call site and actions tables
|
|
.balign 4
|
|
.ttbase:
|
|
.byte 1, 2, 3, 4
|
|
|
|
// ELF: Name: .data
|
|
// MACHO: Name: __data
|
|
// CHECK: SectionData (
|
|
// CHECK-NEXT: 0000: FF01FFFF 00CDCDCD CDCDCDCD CDCDCDCD
|
|
// CHECK: 4000: CDCDCDCD 01020304
|
|
// CHECK-NEXT: )
|