Home | History | Annotate | Download | only in Hexagon
      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 
      8 define void @set(i8 %x) nounwind {
      9 entry:
     10   store i8 %x, i8* getelementptr inbounds ([4 x i8], [4 x i8]* @foo, i32 0, i32 0), align 1
     11   ret void
     12 }
     13 
     14