blob: 820c7314344f68910b08402e93e3c867fd8ed358 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// RUN: %clang -target hexagon -### -mpackets %s 2>&1 \
// RUN: | FileCheck %s -check-prefix CHECK-PACKETS
// RUN: %clang -target hexagon -### -mno-packets %s 2>&1 \
// RUN: | FileCheck %s -check-prefix CHECK-NO-PACKETS
// CHECK-PACKETS: "-target-feature" "+packets"
// CHECK-NO-PACKETS: "-target-feature" "-packets"
|