brintos

brintos / llvm-project-archived public Read only

0
0
Text · 410 B · 4375366 Raw
10 lines · plain
1; RUN: not llc -verify-machineinstrs -o - -mtriple=s390x-linux-gnu -code-model=tiny < %s 2>&1 | FileCheck %s --check-prefix=TINY2; RUN: not llc -verify-machineinstrs -o - -mtriple=s390x-linux-gnu -code-model=kernel < %s 2>&1 | FileCheck %s --check-prefix=KERNEL3 4; TINY:    Target does not support the tiny CodeModel5; KERNEL:    Target does not support the kernel CodeModel6 7define void @foo() {8  ret void9}10