[llvm] r244732 - [MC] Convert the last test using macho-dump under X86/ to llvm-readobj.

Davide Italiano via llvm-commits llvm-commits at lists.llvm.org
Wed Aug 12 03:36:16 PDT 2015


Author: davide
Date: Wed Aug 12 05:36:16 2015
New Revision: 244732

URL: http://llvm.org/viewvc/llvm-project?rev=244732&view=rev
Log:
[MC] Convert the last test using macho-dump under X86/ to llvm-readobj.

Modified:
    llvm/trunk/test/MC/X86/cfi_def_cfa-crash.s

Modified: llvm/trunk/test/MC/X86/cfi_def_cfa-crash.s
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/MC/X86/cfi_def_cfa-crash.s?rev=244732&r1=244731&r2=244732&view=diff
==============================================================================
--- llvm/trunk/test/MC/X86/cfi_def_cfa-crash.s (original)
+++ llvm/trunk/test/MC/X86/cfi_def_cfa-crash.s Wed Aug 12 05:36:16 2015
@@ -1,4 +1,4 @@
-// RUN: llvm-mc -triple x86_64-apple-darwin -filetype=obj %s -o - | macho-dump | FileCheck %s
+// RUN: llvm-mc -triple x86_64-apple-darwin -filetype=obj %s -o - | llvm-readobj -sections | FileCheck %s
 
 // We were trying to generate compact unwind info for assembly like this.
 // The .cfi_def_cfa directive, however, throws a wrench into that and was
@@ -68,6 +68,22 @@ _foo:
   ret
  .cfi_endproc
 
-
-
-// CHECK: 'section_name', '__eh_frame\x00
+// CHECK: Section {
+// CHECK:   Index: 1
+// CHECK:   Name: __eh_frame (5F 5F 65 68 5F 66 72 61 6D 65 00 00 00 00 00 00)
+// CHECK:   Segment: __TEXT (5F 5F 54 45 58 54 00 00 00 00 00 00 00 00 00 00)
+// CHECK:   Address: 0x70
+// CHECK:   Size: 0x40
+// CHECK:   Offset: 480
+// CHECK:   Alignment: 3
+// CHECK:   RelocationOffset: 0x0
+// CHECK:   RelocationCount: 0
+// CHECK:   Type: 0xB
+// CHECK:   Attributes [ (0x680000)
+// CHECK:     LiveSupport (0x80000)
+// CHECK:     NoTOC (0x400000)
+// CHECK:     StripStaticSyms (0x200000)
+// CHECK:   ]
+// CHECK:   Reserved1: 0x0
+// CHECK:   Reserved2: 0x0
+// CHECK: }




More information about the llvm-commits mailing list