1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00
llvm-mirror/test/Reduce/remove-global-vars.ll
David Blaikie 5ccdb04d28 Remove unnecessary 'rm' in llvm-reduce tests
These were initially added to cleanup some transient/leftover files in
r372054. Now that's all cleaned up, these are no longer needed.
2020-07-09 10:49:11 -07:00

25 lines
818 B
LLVM

; Test that llvm-reduce can remove uninteresting Global Variables as well as
; their direct uses (which in turn are replaced with 'undef').
;
; RUN: llvm-reduce --test %python --test-arg %p/Inputs/remove-global-vars.py %s -o %t
; RUN: cat %t | FileCheck -implicit-check-not=uninteresting %s
; CHECK: @interesting = global
@interesting = global i32 0, align 4
@uninteresting = global i32 1, align 4
define i32 @main() {
entry:
%0 = load i32, i32* @uninteresting, align 4
; CHECK: store i32 undef, i32* @interesting, align 4
store i32 %0, i32* @interesting, align 4
; CHECK: load i32, i32* @interesting, align 4
%1 = load i32, i32* @interesting, align 4
store i32 %1, i32* @uninteresting, align 4
; CHECK: store i32 5, i32* @interesting, align 4
store i32 5, i32* @interesting, align 4
ret i32 0
}