mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
a5a1ba95e0
We can clear line by line, but that's likely not very important. Reviewed By: hans Differential Revision: https://reviews.llvm.org/D99921
12 lines
318 B
LLVM
12 lines
318 B
LLVM
; RUN: llvm-reduce --test FileCheck --test-arg --check-prefixes=CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t
|
|
; RUN: FileCheck --check-prefix=CHECK-FINAL %s < %t
|
|
|
|
; CHECK-INTERESTINGNESS: declare
|
|
|
|
; CHECK-FINAL-NOT: module asm
|
|
; CHECK-FINAL: declare void @g
|
|
|
|
module asm "foo"
|
|
|
|
declare void @g()
|