brintos

brintos / llvm-project-archived public Read only

0
0
Text · 527 B · 368ce8d Raw
16 lines · c
1// RUN: %clang --target=hexagon -### %s 2>&1 \2// RUN:    | FileCheck %s -check-prefix CHECK-DEFAULT3 4// RUN: %clang --target=hexagon -### -mlong-calls %s 2>&1 \5// RUN:    | FileCheck %s -check-prefix CHECK-LONG-CALLS6 7// RUN: %clang --target=hexagon -### -mlong-calls -mno-long-calls %s 2>&1 \8// RUN:    | FileCheck %s -check-prefix CHECK-NO-LONG-CALLS9 10// CHECK-DEFAULT-NOT: "-target-feature" "+long-calls"11 12// CHECK-LONG-CALLS: "-target-feature" "+long-calls"13 14// CHECK-NO-LONG-CALLS-NOT: "-target-feature" "+long-calls"15 16