[flang] Update CommandTest for AIX (NFC) (#118403)
[llvm-project.git] / llvm / test / CodeGen / Hexagon / store-widen-aliased-load.ll
blobd5d2da4d1056b13166ea328ca579c8d3d712ac60
1 ; RUN: llc -march=hexagon --combiner-store-merging=false -verify-machineinstrs < %s | FileCheck %s
2 ; CHECK: memh
3 ; Check that store widening merges the two adjacent stores.
5 target triple = "hexagon"
7 %struct.type_t = type { i8, i8, [2 x i8] }
9 define zeroext i8 @foo(ptr nocapture %p) nounwind {
10 entry:
11   store i8 0, ptr %p, align 2
12   %b = getelementptr inbounds %struct.type_t, ptr %p, i32 0, i32 1
13   %0 = load i8, ptr %b, align 1
14   store i8 0, ptr %b, align 1
15   ret i8 %0