1; RUN: llc -march=hexagon < %s | FileCheck %s
2
3; No arrays in sdata.
4; CHECK: memb(##foo)
5
6@foo = common global [4 x i8] zeroinitializer, align 1
7
8define void @set() nounwind {
9entry:
10  store i8 0, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @foo, i32 0, i32 0), align 1
11  ret void
12}
13
14