brintos

brintos / llvm-project-archived public Read only

0
0
Text · 498 B · 97df880 Raw
15 lines · plain
1# REQUIRES: x862# RUN: llvm-mc -filetype=obj -triple=i686-unknown-linux /dev/null -o %t.o3# RUN: llvm-mc -filetype=obj -triple=i686-unknown-linux %p/../Inputs/shared.s -o %t2.o4# RUN: ld.lld -shared %t2.o -o %t2.so5# RUN: ld.lld -dynamic-linker foo -rpath bar -rpath baz --script %s --export-dynamic %t.o %t2.so -o %t6# RUN: llvm-readobj -S %t | FileCheck %s7 8# CHECK-NOT:        Name: .interp9 10PHDRS { text PT_LOAD FILEHDR PHDRS; }11SECTIONS {12  . = SIZEOF_HEADERS;13  .text : { *(.text) } : text14}15