Home | History | Annotate | Download | only in Hexagon
      1 ; RUN: llc -march=hexagon -filetype=obj %s -o - | llvm-objdump -d - | FileCheck %s
      2 ; Check that we generate dual stores in one packet in V4
      3 
      4 ; CHECK: 00 40 9f 52 529f4000
      5 ; CHECK: 10 10 00 f0 f0001010
      6 
      7 define void @foo(i32* %a, i32* %b) {
      8   store i32 0, i32* %a
      9   store i32 0, i32* %b
     10   ret void
     11 }
     12