diff options
-rw-r--r-- | lld/test/elf/entry.objtxt | 2 | ||||
-rw-r--r-- | lld/test/mach-o/hello-world-arm64.yaml | 2 | ||||
-rw-r--r-- | lld/test/mach-o/hello-world-armv7.yaml | 2 | ||||
-rw-r--r-- | lld/test/mach-o/hello-world-x86_64.yaml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lld/test/elf/entry.objtxt b/lld/test/elf/entry.objtxt index c4a6c2abfa5..400a89ffb3c 100644 --- a/lld/test/elf/entry.objtxt +++ b/lld/test/elf/entry.objtxt @@ -11,11 +11,11 @@ # RUN: lld -flavor gnu -target x86_64 %s -e _entrypoint --noinhibit-exec -o %t1 # RUN: llvm-nm -n %t1 | FileCheck %s # +# CHECK: U _entrypoint # CHECK: 004001e0 T main # CHECK: 00401000 D _DYNAMIC # CHECK: 00401060 A _end # CHECK: 00401060 A end -# CHECK: U _entrypoint defined-atoms: - name: .text diff --git a/lld/test/mach-o/hello-world-arm64.yaml b/lld/test/mach-o/hello-world-arm64.yaml index a05940a6710..75ac4f74779 100644 --- a/lld/test/mach-o/hello-world-arm64.yaml +++ b/lld/test/mach-o/hello-world-arm64.yaml @@ -88,7 +88,7 @@ undefined-symbols: value: 0x0000000000000000 ... -# CHECK: {{[0-9a-f]+}} (__TEXT,__text) external _main # CHECK: (undefined) external ___stdoutp (from libSystem) # CHECK: (undefined) external _fprintf (from libSystem) # CHECK: (undefined) external dyld_stub_binder (from libSystem) +# CHECK: {{[0-9a-f]+}} (__TEXT,__text) external _main diff --git a/lld/test/mach-o/hello-world-armv7.yaml b/lld/test/mach-o/hello-world-armv7.yaml index c260a7bc5a1..1871d68f6b9 100644 --- a/lld/test/mach-o/hello-world-armv7.yaml +++ b/lld/test/mach-o/hello-world-armv7.yaml @@ -71,6 +71,6 @@ undefined-symbols: value: 0x0000000000000000 ... -# CHECK: {{[0-9a-f]+}} (__TEXT,__text) external [Thumb] _main # CHECK: (undefined) external _printf (from libSystem) # CHECK: (undefined) external dyld_stub_binder (from libSystem) +# CHECK: {{[0-9a-f]+}} (__TEXT,__text) external [Thumb] _main diff --git a/lld/test/mach-o/hello-world-x86_64.yaml b/lld/test/mach-o/hello-world-x86_64.yaml index b40ee90d4dd..340ceefbe7c 100644 --- a/lld/test/mach-o/hello-world-x86_64.yaml +++ b/lld/test/mach-o/hello-world-x86_64.yaml @@ -113,7 +113,7 @@ undefined-symbols: ... -# CHECK: {{[0-9a-f]+}} (__TEXT,__text) external _main # CHECK: (undefined) external ___stdoutp (from libSystem) # CHECK: (undefined) external _fprintf (from libSystem) # CHECK: (undefined) external dyld_stub_binder (from libSystem) +# CHECK: {{[0-9a-f]+}} (__TEXT,__text) external _main |