mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-14 17:36:29 +00:00

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
13 lines
331 B
LLVM
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: ]
|