1 ; RUN: llc -march=hexagon --combiner-store-merging=false < %s | FileCheck %s
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 {
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
19 !0 = !{!"omnipotent char", !1}
20 !1 = !{!"Simple C/C++ TBAA"}