[ARMAsmParser] Sort the ARM register lists based on the encoding value, not the
[oota-llvm.git] / test / MC / ELF / align-size.s
index 3616d3b3721b3033e5a670fc6e8d7e7b82a4ae1f..84a6e998148880d9ada8d26bceae293961c118db 100644 (file)
@@ -1,13 +1,18 @@
-// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | elf-dump  | FileCheck %s
+// RUN: llvm-mc -filetype=obj -triple x86_64-pc-linux-gnu %s -o - | llvm-readobj -s | FileCheck %s
 
 // Test that the alignment does contribute to the size of the section.
 
        .zero 4
        .align  8
 
-// CHECK:      (('sh_name', 0x1) # '.text'
-// CHECK-NEXT:  ('sh_type', 0x1)
-// CHECK-NEXT:  ('sh_flags', 0x6)
-// CHECK-NEXT:  ('sh_addr', 0x0)
-// CHECK-NEXT:  ('sh_offset', 0x40)
-// CHECK-NEXT:  ('sh_size', 0x8)
+// CHECK:        Section {
+// CHECK:          Name: .text
+// CHECK-NEXT:     Type: SHT_PROGBITS
+// CHECK-NEXT:     Flags [
+// CHECK-NEXT:       SHF_ALLOC
+// CHECK-NEXT:       SHF_EXECINSTR
+// CHECK-NEXT:     ]
+// CHECK-NEXT:     Address: 0x0
+// CHECK-NEXT:     Offset: 0x40
+// CHECK-NEXT:     Size: 8
+// CHECK:        }