brintos

brintos / llvm-project-archived public Read only

0
0
Text · 663 B · 40ad1bb Raw
16 lines · plain
1# REQUIRES: x862# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o3 4# RUN: echo "SECTIONS { .bar (foo) : { } };" > %t.script5# RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s6# CHECK: symbol not found: foo7 8# RUN: echo "SECTIONS { .bar : AT(foo) { } };" > %t.script9# RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s10 11# RUN: echo "SECTIONS { .bar : ALIGN(foo) { } };" > %t.script12# RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s13 14# RUN: echo "SECTIONS { .bar : SUBALIGN(foo) { } };" > %t.script15# RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s16