blob: 39e8263aa72877d45255611c40bc5c5e4ac1760b [file] [edit]
; REQUIRES: x86
; This test intentionally checks for fatal errors, and fatal errors aren't supported for testing when main is run twice.
; XFAIL: main-run-twice
; RUN: llvm-as %s -o %t.o
; RUN: not ld.lld %t.o -o /dev/null 2>&1 | FileCheck %s
; CHECK: input module has no datalayout
; This bitcode file has no datalayout.
; Check that we error out producing a reasonable diagnostic.
target triple = "x86_64-unknown-linux-gnu"
define void @_start() {
ret void
}