11 lines · c
1// RUN: %clang --target=hexagon -### -mpackets %s 2>&1 \2// RUN: | FileCheck %s -check-prefix CHECK-PACKETS3 4// RUN: %clang --target=hexagon -### -mno-packets %s 2>&1 \5// RUN: | FileCheck %s -check-prefix CHECK-NO-PACKETS6 7// CHECK-PACKETS: "-target-feature" "+packets"8 9// CHECK-NO-PACKETS: "-target-feature" "-packets"10 11