1# REQUIRES: x86 2# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o 3 4# RUN: echo "SECTIONS { .bar (foo) : { } };" > %t.script 5# RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s 6# CHECK: symbol not found: foo 7 8# RUN: echo "SECTIONS { .bar : AT(foo) { } };" > %t.script 9# RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s 10 11# RUN: echo "SECTIONS { .bar : ALIGN(foo) { } };" > %t.script 12# RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s 13 14# RUN: echo "SECTIONS { .bar : SUBALIGN(foo) { } };" > %t.script 15# RUN: not ld.lld -o /dev/null --script %t.script %t.o 2>&1 | FileCheck %s 16