mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 14:46:53 +00:00
3c80c26580
The original check for load CSE or store-to-load forwarding is wrong when the forwarded stored value happened to be a load. Ref https://github.com/JuliaLang/julia/issues/16894 Differential Revision: http://reviews.llvm.org/D21271 Patch by Yichao Yu! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272868 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
451 B
LLVM
18 lines
451 B
LLVM
; RUN: opt -S -instcombine < %s 2>&1 | FileCheck %s
|
|
|
|
define i64 @f(i64* %p1, i64* %p2) {
|
|
top:
|
|
; check that the tbaa is preserved
|
|
; CHECK-LABEL: @f(
|
|
; CHECK: %v1 = load i64, i64* %p1, align 8, !tbaa !0
|
|
; CHECK: store i64 %v1, i64* %p2, align 8
|
|
; CHECK: ret i64 %v1
|
|
%v1 = load i64, i64* %p1, align 8, !tbaa !0
|
|
store i64 %v1, i64* %p2, align 8
|
|
%v2 = load i64, i64* %p2, align 8
|
|
ret i64 %v2
|
|
}
|
|
|
|
!0 = !{!1, !1, i64 0}
|
|
!1 = !{!"load_tbaa"}
|