[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / tools / llvm-reduce / do-not-remove-terminator.ll
blobc517781f5547c0f9af835c9c0758bb825e1d6af5
1 ; RUN: llvm-reduce --test FileCheck --test-arg --check-prefixes=CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t
2 ; RUN: cat %t | FileCheck --check-prefixes=CHECK-FINAL %s
4 ; Make sure we do not remove the terminator of the entry block. The interesting
5 ; check only requires the result to define the function @test.
7 ; Test case for PR43798.
9 ; CHECK-INTERESTINGNESS: define i32 @test
11 ; CHECK-FINAL:      define i32 @test
12 ; CHECK-FINAL-NEXT: entry:
13 ; CHECK-FINAL-NEXT:   ret i32
15 define i32 @test(i32 %x) {
16 entry:
17   %add = add i32 %x, %x
18   ret i32 %add