mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
c7fb4c55c4
This reverts commit rGcd5b308b828e, rGcd5b308b828e, rG8cedf0e2994c. There are issues to be investigated for polly bots and bots turning on EXPENSIVE_CHECKS.
10 lines
412 B
LLVM
10 lines
412 B
LLVM
; RUN: not llc -verify-machineinstrs -o - -mtriple=powerpc-pc-linux -code-model=tiny < %s 2>&1 | FileCheck %s --check-prefix=TINY
|
|
; RUN: not llc -verify-machineinstrs -o - -mtriple=powerpc-pc-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
|
|
}
|