summaryrefslogtreecommitdiff
path: root/test/MC/ARM/unrecognized.ll
blob: 88fb96d1bf9b6978dcfff04c0972424337b18923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; 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
}