mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
4c0185c682
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. llvm-svn: 323847
18 lines
489 B
LLVM
18 lines
489 B
LLVM
; RUN: llc -mtriple x86_64-elf -filetype asm -o - %s | FileCheck %s
|
|
; REQUIRES: x86-registered-target
|
|
|
|
!llvm.linker.options = !{!0, !1}
|
|
|
|
!0 = !{!"option 0", !"value 0"}
|
|
!1 = !{!"option 1", !"value 1"}
|
|
|
|
; CHECK: .section ".linker-options","e",@llvm_linker_options
|
|
; CHECK-NEXT: .ascii "option 0"
|
|
; CHECK-NEXT: .byte 0
|
|
; CHECK-NEXT: .ascii "value 0"
|
|
; CHECK-NEXT: .byte 0
|
|
; CHECK-NEXT: .ascii "option 1"
|
|
; CHECK-NEXT: .byte 0
|
|
; CHECK-NEXT: .ascii "value 1"
|
|
; CHECK-NEXT: .byte 0
|