mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
fc1584be52
Summary: Following https://reviews.llvm.org/D82607. Reviewers: ychen Subscribers: asbirlea, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D82688
16 lines
428 B
LLVM
16 lines
428 B
LLVM
; RUN: opt < %s -basic-aa -newgvn -S | FileCheck %s
|
|
|
|
%struct.INT2 = type { i32, i32 }
|
|
@blkshifts = external global %struct.INT2* ; <%struct.INT2**> [#uses=2]
|
|
|
|
define i32 @xcompact() {
|
|
entry:
|
|
store %struct.INT2* null, %struct.INT2** @blkshifts, align 4
|
|
br label %bb
|
|
|
|
bb: ; preds = %bb, %entry
|
|
%tmp10 = load %struct.INT2*, %struct.INT2** @blkshifts, align 4 ; <%struct.INT2*> [#uses=0]
|
|
; CHECK-NOT: %tmp10
|
|
br label %bb
|
|
}
|