This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[InstCombine] Don't widen metadata on store-to-load forwarding
The original check for load CSE or store-to-load forwarding is wrong when the forwarded stored value happened to be a load. Ref JuliaLang/julia#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
- Loading branch information
1 parent
6f40146
commit 4721ee1
Showing
4 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
; 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"} |