[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / Hexagon / store-widen-aliased-load.ll
blob6c04e7a1e6ea44a9e8dcb533a988c52c387c811c
1 ; RUN: llc -march=hexagon --combiner-store-merging=false < %s | FileCheck %s
2 ; CHECK-NOT: memh
3 ; Check that store widening does not merge the two stores.
5 target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32-f64:64:64-f32:32:32-v64:64:64-v32:32:32-a0:0-n16:32"
6 target triple = "hexagon"
8 %struct.type_t = type { i8, i8, [2 x i8] }
10 define zeroext i8 @foo(ptr nocapture %p) nounwind {
11 entry:
12   store i8 0, ptr %p, align 2, !tbaa !0
13   %b = getelementptr inbounds %struct.type_t, ptr %p, i32 0, i32 1
14   %0 = load i8, ptr %b, align 1, !tbaa !0
15   store i8 0, ptr %b, align 1, !tbaa !0
16   ret i8 %0
19 !0 = !{!"omnipotent char", !1}
20 !1 = !{!"Simple C/C++ TBAA"}