mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
c101ae18cb
It breaks some lld tests. This reverts commit 3a50eea6d9732ab40e9a7aebe6be777b53a8b35c. llvm-svn: 298932
12 lines
332 B
ArmAsm
12 lines
332 B
ArmAsm
// RUN: llvm-mc %s -o %t.o -filetype=obj -triple=armv7-pc-linux
|
|
// RUN: llvm-readobj -t %t.o | FileCheck %s
|
|
// RUN: llvm-nm %t.o | FileCheck -allow-empty --check-prefix=NM %s
|
|
|
|
// Test that nm doesn't print the mapping symbols
|
|
|
|
// CHECK: Name: $d.0
|
|
// NM-NOT: $d.0
|
|
|
|
.section .foobar,"",%progbits
|
|
.asciz "foo"
|