aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/tools/llvm-reduce/run-ir-passes-error.ll
blob: 772555d1ec5fbc08bf6f647cc766a1292b78da06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; RUN: not llvm-reduce --abort-on-invalid-reduction --delta-passes=ir-passes --ir-passes=does-not-parse --test FileCheck --test-arg --check-prefixes=CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o /dev/null 2>&1 | FileCheck -check-prefix=ERR %s

; CHECK-INTERESTINGNESS-LABEL: @f1
; ERR: LLVM ERROR: unknown pass name 'does-not-parse'

define i32 @f1(i32 %a) {
  %b = add i32 %a, 5
  %c = add i32 %b, 5
  ret i32 %c
}

define i32 @f2(i32 %a) {
  %b = add i32 %a, 5
  %c = add i32 %b, 5
  ret i32 %c
}

declare void @f3()