mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
6cd76408bf
This patch updates tests using llvm-readobj and llvm-readelf, because soon reading from stdin will be achievable only via a '-' as described here: https://bugs.llvm.org/show_bug.cgi?id=46400. Patch with changes to llvm-readobj behavior is here: https://reviews.llvm.org/D83704 Differential Revision: https://reviews.llvm.org/D83912 Reviewed by: jhenderson, MaskRay, grimar
14 lines
483 B
LLVM
14 lines
483 B
LLVM
; RUN: llc -mtriple=x86_64-linux-gnu -filetype=asm < %s | FileCheck %s --check-prefix=DIRECTIVE
|
|
; RUN: llc -mtriple=x86_64-linux-gnu -filetype=obj < %s | llvm-readobj --symbols - | FileCheck %s --check-prefix=STT-FILE
|
|
|
|
; DIRECTIVE: .file "foobar"
|
|
; STT-FILE: Name: foobar
|
|
; STT-FILE-NEXT: Value: 0x0
|
|
; STT-FILE-NEXT: Size: 0
|
|
; STT-FILE-NEXT: Binding: Local
|
|
; STT-FILE-NEXT: Type: File
|
|
; STT-FILE-NEXT: Other: 0
|
|
; STT-FILE-NEXT: Section: Absolute
|
|
|
|
source_filename = "/path/to/foobar"
|