1// 32 bit big endian 2// RUN: llvm-mc -filetype=obj -triple mips-unknown-linux %s -o - | elf-dump --dump-section-data | FileCheck -check-prefix=CHECK-BE32 %s 3// 32 bit little endian 4// RUN: llvm-mc -filetype=obj -triple mipsel-unknown-linux %s -o - | elf-dump --dump-section-data | FileCheck -check-prefix=CHECK-LE32 %s 5// 64 bit big endian 6// RUN: llvm-mc -filetype=obj -arch=mips64 -triple mips64-unknown-linux %s -o - | elf-dump --dump-section-data | FileCheck -check-prefix=CHECK-BE64 %s 7// 64 bit little endian 8// RUN: llvm-mc -filetype=obj -arch=mips64el -triple mips64el-unknown-linux %s -o - | elf-dump --dump-section-data | FileCheck -check-prefix=CHECK-LE64 %s 9 10// Check that we produce 32 bit with each endian. 11 12// This is 32 bit. 13// CHECK-BE32: ('e_indent[EI_CLASS]', 0x01) 14// This is big endian. 15// CHECK-BE32: ('e_indent[EI_DATA]', 0x02) 16 17// This is 32 bit. 18// CHECK-LE32: ('e_indent[EI_CLASS]', 0x01) 19// This is little endian. 20// CHECK-LE32: ('e_indent[EI_DATA]', 0x01) 21 22// Check that we produce 64 bit with each endian. 23 24// This is 64 bit. 25// CHECK-BE64: ('e_indent[EI_CLASS]', 0x02) 26// This is big endian. 27// CHECK-BE64: ('e_indent[EI_DATA]', 0x02) 28 29// This is 64 bit. 30// CHECK-LE64: ('e_indent[EI_CLASS]', 0x02) 31// This is little endian. 32// CHECK-LE64: ('e_indent[EI_DATA]', 0x01) 33 34// Check that we are setting EI_OSABI to ELFOSABI_LINUX. 35// CHECK-LE64: ('e_indent[EI_OSABI]', 0x03) 36