forked from OSchip/llvm-project
12 lines
403 B
ArmAsm
12 lines
403 B
ArmAsm
// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/archive.s -o %ta.o
|
|
// RUN: llvm-ar rc %t.a %ta.o
|
|
// RUN: llvm-mc -filetype=obj -triple=i686-linux %s -o %tb.o
|
|
// RUN: not ld.lld2 %t.a %tb.o 2>&1 | FileCheck %s
|
|
|
|
// We used to crash when
|
|
// * The first object seen by the symbol table is from an archive.
|
|
// * -m was not used.
|
|
// CHECK: a.o is incompatible with {{.*}}b.o
|
|
|
|
// REQUIRES: x86
|