brintos

brintos / llvm-project-archived public Read only

0
0
Text · 506 B · fe4e95f Raw
15 lines · plain
1# REQUIRES: mips2# Shouldn't allow the GNU hash style to be selected with the MIPS target.3 4# RUN: llvm-mc -filetype=obj -triple=mips-unknown-linux %s -o %t-be.o5# RUN: not ld.lld -shared -hash-style=gnu %t-be.o -o /dev/null 2>&1 | FileCheck %s6 7# RUN: llvm-mc -filetype=obj -triple=mipsel-unknown-linux %s -o %t-el.o8# RUN: not ld.lld -shared -hash-style=gnu %t-el.o -o /dev/null 2>&1 | FileCheck %s9 10# CHECK: the .gnu.hash section is not compatible with the MIPS target11 12  .globl  __start13__start:14  nop15