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.
15 lines
500 B
15 lines
500 B
// 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
|
|
|
|
// RUN: %clang -target armv7-none-gnueabi -mno-movt -### %s 2>&1 \
|
|
// RUN: | FileCheck %s -check-prefix CHECK-NO-MOVT
|
|
|
|
// CHECK-DEFAULT-NOT: "-target-feature" "+no-movt"
|
|
|
|
// CHECK-KERNEL: "-target-feature" "+no-movt"
|
|
|
|
// CHECK-NO-MOVT: "-target-feature" "+no-movt"
|