12 lines · plain
1# REQUIRES: x862# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-darwin %s -o %t.o3# RUN: %lld -o %t %t.o4# RUN: not %lld -o /dev/null %t 2>&1 | FileCheck %s -DFILE=%t5# CHECK: error: [[FILE]]: unhandled file type6 7.text8.global _main9_main:10 mov $0, %rax11 ret12