1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00
llvm-mirror/test/tools/llvm-reduce/remove-function-bodies-used-in-globals.ll
Samuel 180f0bc045 [llvm-reduce] Move tests to tools folder
Move tests for llvm-reduce to tools folder

Reviewed By: fhahn, lebedev.ri

Differential Revision: https://reviews.llvm.org/D99632
2021-04-01 10:04:10 -07:00

18 lines
558 B
LLVM

; RUN: llvm-reduce --test FileCheck --test-arg --check-prefix=CHECK-INTERESTINGNESS --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), bitcast (void ()* @func to void (i32)*)
@alias = alias void (i32), void (i32)* @func
; CHECK-FINAL: @func()
define void @func(i32 %arg) {
entry:
ret void
}