[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / InstCombine / tbaa-store-to-load.ll
blob696a1643a71b1bc398c4fe2e3f35e4cdbce8b68f
1 ; RUN: opt -S -instcombine < %s 2>&1 | FileCheck %s
3 define i64 @f(i64* %p1, i64* %p2) {
4 top:
5   ; check that the tbaa is preserved
6   ; CHECK-LABEL: @f(
7   ; CHECK: %v1 = load i64, i64* %p1, align 8, !tbaa !0
8   ; CHECK: store i64 %v1, i64* %p2, align 8
9   ; CHECK: ret i64 %v1
10   %v1 = load i64, i64* %p1, align 8, !tbaa !0
11   store i64 %v1, i64* %p2, align 8
12   %v2 = load i64, i64* %p2, align 8
13   ret i64 %v2
16 !0 = !{!1, !1, i64 0}
17 !1 = !{!"scalar type", !2}
18 !2 = !{!"load_tbaa"}