[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / lld / test / ELF / lto / inline-asm-err.ll
blob54247320556c975ac1063ee96933ae107473fec2
1 ; REQUIRES: x86
2 ; RUN: llvm-as %s -o %t.bc
3 ; RUN: not ld.lld -shared %t.bc -o /dev/null 2>&1 | FileCheck %s --check-prefix=REGULAR
5 ;; For regular LTO, the original module name is lost.
6 ; REGULAR: error: ld-temp.o <inline asm>:1:2: invalid instruction mnemonic 'invalid'
8 ; RUN: opt -module-summary %s -o %t.bc
9 ; RUN: not ld.lld -shared %t.bc -o /dev/null 2>&1 | FileCheck %s --check-prefix=THIN
11 ; THIN: error: {{.*}}.bc <inline asm>:1:2: invalid instruction mnemonic 'invalid'
13 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
14 target triple = "x86_64-unknown-linux-gnu"
16 define void @foo() {
17   call void asm "invalid", ""()
18   ret void