brintos

brintos / llvm-project-archived public Read only

0
0
Text · 480 B · 02a52bb Raw
24 lines · plain
1// RUN: llvm-mc -triple=hexagon -mcpu=hexagonv75 -filetype=obj %s \2// RUN:   | llvm-objdump -d - \3// RUN:   | FileCheck %s4 5foo:6  { nop }7  /// a nop without end-of-packet bits set to simulate data that is8  /// not a proper packet end.9  .long 0x7f00400010bar:11  { nop12    nop13  }14 15// CHECK-LABEL: <foo>:16// CHECK: { nop }17// CHECK-NEXT: { nop18 19/// The instruction starting after <bar> should start in a new packet.20// CHECK-LABEL: <bar>:21// CHECK: { nop22// CHECK-NEXT: nop }23 24