mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
93681fa6c6
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199886 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
727 B
LLVM
16 lines
727 B
LLVM
; RUN: llc -mcpu=invalid -o /dev/null %s 2>&1 | FileCheck %s --check-prefix=CPU
|
|
; CPU: 'invalid' is not a recognized processor for this target (ignoring processor)
|
|
; CPU-NOT: 'invalid' is not a recognized processor for this target (ignoring processor)
|
|
|
|
; RUN: llc -mattr=+foo,+bar -o /dev/null %s 2>&1 | FileCheck %s --check-prefix=FEATURE
|
|
; FEATURE: 'foo' is not a recognized feature for this target (ignoring feature)
|
|
; FEATURE-NEXT: 'bar' is not a recognized feature for this target (ignoring feature)
|
|
; FEATURE-NOT: 'foo' is not a recognized feature for this target (ignoring feature)
|
|
; FEATURE-NOT: 'bar' is not a recognized feature for this target (ignoring feature)
|
|
|
|
define void @foo() {
|
|
entry:
|
|
ret void
|
|
}
|
|
|