blob: 48e4e1ce90e912787061172c35a8a4ca7f953902 [file] [log] [blame]
; RUN: llvm-reduce --test FileCheck --test-arg --check-prefix=CHECK-INTERESTINGNESS --abort-on-invalid-reduction --test-arg %s --test-arg --input-file %s -o %t
; RUN: FileCheck --check-prefix=CHECK-FINAL %s < %t
; We cannot change the @alias to undef, because it would result in invalid IR
; (Aliasee should be either GlobalValue or ConstantExpr).
; CHECK-INTERESTINGNESS: @alias =
; CHECK-FINAL: @alias = alias void (i32), ptr @func
@alias = alias void (i32), ptr @func
; CHECK-FINAL: @func()
define void @func(i32 %arg) {
entry:
ret void
}