
Avoid capitalized Error. This loses the "Error constructing pass pipeline" part, and just forwards the error to the default report_fatal_error case. Not sure if it's worth trying to keep.
19 lines
539 B
LLVM
19 lines
539 B
LLVM
; 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()
|