blob: 9684d0e16cce331bfdcef7efd2318dc33cfb9a82 (
plain)
1
2
3
4
5
6
7
8
9
|
// RUN: %clang -target armv7-apple-darwin -### %s 2>&1 \
// RUN: | FileCheck %s -check-prefix CHECK-DEFAULT
// RUN: %clang -target armv7-apple-darwin -mkernel -### %s 2>&1 \
// RUN: | FileCheck %s -check-prefix CHECK-KERNEL
// CHECK-DEFAULT-NOT: "-target-feature" "+no-movt"
// CHECK-KERNEL: "-target-feature" "+no-movt"
|