llvm/test/tools/llvm-readobj/elf-linker-options.ll
Justin Bogner 2589f81cee Mark two tests REQUIRES: x86-registered-backend
These were introduced in r323783 and use an X86 triple. I'll follow up
on the list to check if it would make more sense to remove the triple
and mark them REQUIRES: default_triple instead.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@323847 91177308-0d34-0410-b5e6-96231b3b80d8
2018-01-31 07:32:03 +00:00

13 lines
331 B
LLVM

; RUN: llc -mtriple x86_64-elf -filetype obj -o - %s | llvm-readobj -elf-linker-options - | FileCheck %s
; REQUIRES: x86-registered-target
!llvm.linker.options = !{!0, !1}
!0 = !{!"option 0", !"value 0"}
!1 = !{!"option 1", !"value 1"}
; CHECK: LinkerOptions [
; CHECK: option 0: value 0
; CHECK: option 1: value 1
; CHECK: ]