1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00
llvm-mirror/test/Feature/elf-linker-options.ll
Justin Bogner 4c0185c682 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.

llvm-svn: 323847
2018-01-31 07:32:03 +00:00

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