You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
451 B
18 lines
451 B
; 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"}
|