[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / lld / test / MachO / lto-module-asm-err.ll
blob45dff241a653b13790bd4aa123c7bc82dd3e13a9
1 ; REQUIRES: x86
2 ; RUN: llvm-as %s -o %t.bc
3 ; RUN: not %lld %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: <inline asm>:2:1: invalid instruction mnemonic 'invalid'
8 ; RUN: not opt -module-summary %s -o /dev/null 2>&1 | FileCheck %s --check-prefix=THIN
10 ; THIN: error: <inline asm>:2:1: invalid instruction mnemonic 'invalid'
12 target triple = "x86_64-apple-macosx10.15.0"
13 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
15 module asm ".text"
16 module asm "invalid"
18 define void @main() {
19   ret void