mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-15 18:06:08 +00:00

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@348796 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
422 B
LLVM
10 lines
422 B
LLVM
; RUN: not llc -verify-machineinstrs -o - -mtriple=sparc64-unknown-linux -code-model=tiny < %s 2>&1 | FileCheck %s --check-prefix=TINY
|
|
; RUN: not llc -verify-machineinstrs -o - -mtriple=sparc64-unknown-linux -code-model=kernel < %s 2>&1 | FileCheck %s --check-prefix=KERNEL
|
|
|
|
; TINY: Target does not support the tiny CodeModel
|
|
; KERNEL: Target does not support the kernel CodeModel
|
|
|
|
define void @foo() {
|
|
ret void
|
|
}
|