blob: 375b0f81c24f1fa404ab34d61f73e19bb4768020 [file] [log] [blame]
// RUN: %clang -target armv7-eabi -### %s 2>&1 \
// RUN: | FileCheck %s -check-prefix CHECK-DEFAULT
// RUN: %clang -target armv7-eabi -### -mlong-calls %s 2>&1 \
// RUN: | FileCheck %s -check-prefix CHECK-LONG-CALLS
// RUN: %clang -target armv7-eabi -### -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"