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