Clang Project

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