[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / tools / llvm-reduce / remove-function-bodies-used-in-globals.ll
blob0832456b6bf0dc7abd6eb68521f39792c6278065
1 ; RUN: llvm-reduce --test FileCheck --test-arg --check-prefix=CHECK-INTERESTINGNESS --test-arg %s --test-arg --input-file %s -o %t
2 ; RUN: FileCheck --check-prefix=CHECK-FINAL %s < %t
4 ; We cannot change the @alias to undef, because it would result in invalid IR
5 ; (Aliasee should be either GlobalValue or ConstantExpr).
7 ; CHECK-INTERESTINGNESS: @alias =
8 ; CHECK-FINAL: @alias = alias void (i32), bitcast (void ()* @func to void (i32)*)
10 @alias = alias void (i32), void (i32)* @func
12 ; CHECK-FINAL: @func()
14 define void @func(i32 %arg) {
15 entry:
16   ret void