You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
524 B
16 lines
524 B
// RUN: %clang -target hexagon -### %s 2>&1 \
|
|
// RUN: | FileCheck %s -check-prefix CHECK-DEFAULT
|
|
|
|
// RUN: %clang -target hexagon -### -mlong-calls %s 2>&1 \
|
|
// RUN: | FileCheck %s -check-prefix CHECK-LONG-CALLS
|
|
|
|
// RUN: %clang -target hexagon -### -mlong-calls -mno-long-calls %s 2>&1 \
|
|
// RUN: | FileCheck %s -check-prefix CHECK-NO-LONG-CALLS
|
|
|
|
// CHECK-DEFAULT-NOT: "-target-feature" "+long-calls"
|
|
|
|
// CHECK-LONG-CALLS: "-target-feature" "+long-calls"
|
|
|
|
// CHECK-NO-LONG-CALLS-NOT: "-target-feature" "+long-calls"
|
|
|