d71eef37332055f4d83f5d13070676302744a9fc
[oota-llvm.git] / test / MC / Mips / mips_abi_flags_xx.s
1 # RUN: llvm-mc %s -arch=mips -mcpu=mips32 | \
2 # RUN:   FileCheck %s -check-prefix=CHECK-ASM
3 #
4 # RUN: llvm-mc %s -arch=mips -mcpu=mips32 -filetype=obj -o - | \
5 # RUN:   llvm-readobj -sections -section-data -section-relocations - | \
6 # RUN:     FileCheck %s -check-prefix=CHECK-OBJ
7
8 # RUN: llvm-mc /dev/null -arch=mips -mcpu=mips32 -mattr=fpxx -filetype=obj -o - | \
9 # RUN:   llvm-readobj -sections -section-data -section-relocations - | \
10 # RUN:     FileCheck %s -check-prefix=CHECK-OBJ
11
12 # CHECK-ASM: .module fp=xx
13
14 # Checking if the Mips.abiflags were correctly emitted.
15 # CHECK-OBJ:       Section {
16 # CHECK-OBJ:         Index: 5
17 # CHECK-OBJ-LABEL:   Name: .MIPS.abiflags (12)
18 # CHECK-OBJ:         Type: SHT_MIPS_ABIFLAGS (0x7000002A)
19 # CHECK-OBJ:          Flags [ (0x2)
20 # CHECK-OBJ:           SHF_ALLOC (0x2)
21 # CHECK-OBJ:         ]
22 # CHECK-OBJ:         Address: 0x0
23 # CHECK-OBJ:         Size: 24
24 # CHECK-OBJ:         Link: 0
25 # CHECK-OBJ:         Info: 0
26 # CHECK-OBJ:         AddressAlignment: 8
27 # CHECK-OBJ:         EntrySize: 24
28 # CHECK-OBJ:         Relocations [
29 # CHECK-OBJ:         ]
30 # CHECK-OBJ:         SectionData (
31 # CHECK-OBJ:           0000: 00002001 01010005 00000000 00000000  |.. .............|
32 # CHECK-OBJ:           0010: 00000001 00000000                    |........|
33 # CHECK-OBJ:         )
34 # CHECK-OBJ-LABEL: }
35
36         .module fp=xx
37
38 # FIXME: Test should include gnu_attributes directive when implemented.
39 #        An explicit .gnu_attribute must be checked against the effective
40 #        command line options and any inconsistencies reported via a warning.