[lld] r209705 - [mach-o] rename test case
Nick Kledzik
kledzik at apple.com
Tue May 27 18:31:04 PDT 2014
Author: kledzik
Date: Tue May 27 20:31:04 2014
New Revision: 209705
URL: http://llvm.org/viewvc/llvm-project?rev=209705&view=rev
Log:
[mach-o] rename test case
Added:
lld/trunk/test/mach-o/parse-function.yaml
- copied unchanged from r209704, lld/trunk/test/mach-o/function-scope.yaml
Removed:
lld/trunk/test/mach-o/function-scope.yaml
Removed: lld/trunk/test/mach-o/function-scope.yaml
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/mach-o/function-scope.yaml?rev=209704&view=auto
==============================================================================
--- lld/trunk/test/mach-o/function-scope.yaml (original)
+++ lld/trunk/test/mach-o/function-scope.yaml (removed)
@@ -1,44 +0,0 @@
-# RUN: lld -flavor darwin -arch x86_64 -r -print_atoms %s -o %t | FileCheck %s
-#
-# Test parsing of scope of functions.
-#
-
---- !mach-o
-arch: x86_64
-file-type: MH_OBJECT
-flags: [ MH_SUBSECTIONS_VIA_SYMBOLS ]
-has-UUID: false
-OS: unknown
-sections:
- - segment: __TEXT
- section: __text
- type: S_REGULAR
- attributes: [ S_ATTR_PURE_INSTRUCTIONS, S_ATTR_SOME_INSTRUCTIONS ]
- alignment: 4
- address: 0x0000000000000000
- content: [ 0xC3, 0xC3, 0xC3 ]
-local-symbols:
- - name: _myStatic
- type: N_SECT
- sect: 1
- value: 0x0000000000000002
-global-symbols:
- - name: _myGlobal
- type: N_SECT
- scope: [ N_EXT ]
- sect: 1
- value: 0x0000000000000000
- - name: _myHidden
- type: N_SECT
- scope: [ N_EXT, N_PEXT ]
- sect: 1
- value: 0x0000000000000001
-...
-
-# CHECK: name: _myGlobal
-# CHECK: scope: global
-# CHECK: name: _myHidden
-# CHECK: scope: hidden
-# CHECK: name: _myStatic
-# CHECK-NOT: scope: global
-# CHECK-NOT: scope: hidden
More information about the llvm-commits
mailing list