llvm-project/llvm/test/MC/Mips/elf_basic.s
Fangrui Song 252c42354e [test] Change llvm-mc -arch= to -triple=
The issue is uncovered by #47698: for assembly files, -triple= specifies the
full target triple while -arch= merely sets the architecture part of the default
target triple, leaving a target triple which may not make sense, e.g.
riscv64-apple-darwin.

Therefore, -arch= is error-prone and not recommended for tests. The issue has
been benign as we recognize $unknown-apple-darwin as ELF instead of rejecting it
outrightly.

Due to the nature of the issue, we don't see the issue in tests using
architectures that any of Mach-O/COFF/XCOFF supports.
2023-09-11 14:51:50 -07:00

42 lines
1.4 KiB
ArmAsm

// 32 bit big endian
// RUN: llvm-mc -filetype=obj -triple mips-unknown-linux %s -o - | llvm-readobj -h - | FileCheck -check-prefix=CHECK-BE32 %s
// 32 bit little endian
// RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux %s -o - | llvm-readobj -h - | FileCheck -check-prefix=CHECK-LE32 %s
// 64 bit big endian
// RUN: llvm-mc -filetype=obj -triple=mips64 -triple mips64-unknown-linux %s -o - | llvm-readobj -h - | FileCheck -check-prefix=CHECK-BE64 %s
// 64 bit little endian
// RUN: llvm-mc -filetype=obj -triple=mips64el -triple mips64el-unknown-linux %s -o - | llvm-readobj -h - | FileCheck -check-prefix=CHECK-LE64 %s
// Check that we produce 32 bit with each endian.
// CHECK-BE32: ElfHeader {
// CHECK-BE32: Ident {
// CHECK-BE32: Class: 32-bit
// CHECK-BE32: DataEncoding: BigEndian
// CHECK-BE32: }
// CHECK-BE32: }
// CHECK-LE32: ElfHeader {
// CHECK-LE32: Ident {
// CHECK-LE32: Class: 32-bit
// CHECK-LE32: DataEncoding: LittleEndian
// CHECK-LE32: }
// CHECK-LE32: }
// Check that we produce 64 bit with each endian.
// CHECK-BE64: ElfHeader {
// CHECK-BE64: Ident {
// CHECK-BE64: Class: 64-bit
// CHECK-BE64: DataEncoding: BigEndian
// CHECK-BE64: }
// CHECK-BE64: }
// CHECK-LE64: ElfHeader {
// CHECK-LE64: Ident {
// CHECK-LE64: Class: 64-bit
// CHECK-LE64: DataEncoding: LittleEndian
// CHECK-LE64: OS/ABI: SystemV
// CHECK-LE64: }
// CHECK-LE64: }