brintos

brintos / llvm-project-archived public Read only

0
0
Text · 232 B · c9c2a75 Raw
12 lines · plain
1# REQUIRES: ppc2 3# RUN: llvm-mc -filetype=obj -triple=powerpc64le %s -o %t.o4# RUN: not ld.lld %t.o -o /dev/null 2>&1 | FileCheck %s --check-prefix=ERR5 6# ERR: error: undefined symbol: undef7 8.global _start9_start:10  bl undef11  nop12