blob: ee3ceae6df234f8c2ba98a9a63da4c924e95da25 [file] [log] [blame]
David Greenbd72be02018-12-10 20:55:34 +00001; RUN: not llc -verify-machineinstrs -o - -mtriple=powerpc-pc-linux -code-model=tiny < %s 2>&1 | FileCheck %s --check-prefix=TINY
2; RUN: not llc -verify-machineinstrs -o - -mtriple=powerpc-pc-linux -code-model=kernel < %s 2>&1 | FileCheck %s --check-prefix=KERNEL
David Greenca29c272018-12-07 12:10:23 +00003
4; TINY: Target does not support the tiny CodeModel
5; KERNEL: Target does not support the kernel CodeModel
6
7define void @foo() {
8 ret void
9}