Clang Project

clang_source_code/test/Driver/hexagon-packets.c
1// RUN: %clang -target hexagon -### -mpackets %s 2>&1 \
2// RUN:    | FileCheck %s -check-prefix CHECK-PACKETS
3
4// RUN: %clang -target hexagon -### -mno-packets %s 2>&1 \
5// RUN:    | FileCheck %s -check-prefix CHECK-NO-PACKETS
6
7// CHECK-PACKETS: "-target-feature" "+packets"
8
9// CHECK-NO-PACKETS: "-target-feature" "-packets"
10
11