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.
7 lines
518 B
7 lines
518 B
// ================== Check default Architecture on krait CPU
|
|
// RUN: %clang -target arm-linux-gnueabi -mcpu=krait -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-CPUV7A %s
|
|
// ================== Check whether -mcpu accepts mixed-case values.
|
|
// RUN: %clang -target arm-linux-gnueabi -mcpu=Krait -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-CPUV7A %s
|
|
// RUN: %clang -target arm-linux-gnueabi -mcpu=KRAIT -### -c %s 2>&1 | FileCheck -check-prefix=CHECK-CPUV7A %s
|
|
// CHECK-CPUV7A: "-cc1"{{.*}} "-triple" "armv7-{{.*}}
|