mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
9fd3de40b7
llvm-svn: 348796
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
|
|
}
|