[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / tools / llvm-reduce / remove-global-align.ll
blob7f7bb466f9e8ce6676fa8d09eb88234a5c363262
1 ; RUN: llvm-reduce --delta-passes=global-objects --abort-on-invalid-reduction --test FileCheck --test-arg --check-prefixes=INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t
2 ; RUN: FileCheck --check-prefix=FINAL %s --input-file=%t
4 ; INTERESTINGNESS: @b = global i32
5 ; FINAL: @b = global i32 0{{$}}
7 @b = global i32 0, align 4
9 ; INTERESTINGNESS: define {{.*}} @f
10 ; FINAL: define void @f() {
11 define void @f() align 4 {
12   ret void
15 ; INTERESTINGNESS: declare {{.*}} @h
16 ; FINAL: declare void @h(){{$}}
17 declare void @h() align 4