mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
b2d3b0af04
We use both -long-option and --long-option in tests. Switch to --long-option for consistency. In the "llvm-readelf" mode, -long-option is discouraged as it conflicts with grouped short options and it is not accepted by GNU readelf. While updating the tests, change llvm-readobj -s to llvm-readobj -S to reduce confusion ("s" is --section-headers in llvm-readobj but --symbols in llvm-readelf). llvm-svn: 359649
27 lines
597 B
LLVM
27 lines
597 B
LLVM
; RUN: llvm-as %s -o %t1.o
|
|
; RUN: %gold -m elf_x86_64 -plugin %llvmshlibdir/LLVMgold%shlibext \
|
|
; RUN: -r %t1.o -o %t
|
|
; RUN: llvm-readobj --symbols %t | FileCheck %s
|
|
|
|
; CHECK: Symbol {
|
|
; CHECK: Name: foo
|
|
; CHECK-NEXT: Value: 0x0
|
|
; CHECK-NEXT: Size: 1
|
|
; CHECK-NEXT: Binding: Global
|
|
; CHECK-NEXT: Type: Function
|
|
; CHECK-NEXT: Other: 0
|
|
; CHECK-NEXT: Section: .text
|
|
; CHECK-NEXT: }
|
|
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
define void @foo() {
|
|
call void @bar()
|
|
ret void
|
|
}
|
|
|
|
define internal void @bar() {
|
|
ret void
|
|
}
|