From: Tim Northover Date: Thu, 28 Apr 2016 14:01:49 +0000 (+0000) Subject: Add accidentally dropped test to r267880. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=669ff4cf636b800dccf8cbd6479e1ea964a98935;p=clang Add accidentally dropped test to r267880. Forgot "git add". git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@267881 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Preprocessor/arm-target-features.c b/test/Preprocessor/arm-target-features.c index cb3d4703ef..8d8a0afe2f 100644 --- a/test/Preprocessor/arm-target-features.c +++ b/test/Preprocessor/arm-target-features.c @@ -212,6 +212,16 @@ // A7:#define __ARM_FEATURE_DSP 1 // A7:#define __ARM_FP 0xE +// Test whether predefines are as expected when targeting cortex-a7. +// RUN: %clang -target x86_64-apple-darwin -arch armv7k -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=ARMV7K %s +// ARMV7K:#define __ARM_ARCH 7 +// ARMV7K:#define __ARM_ARCH_EXT_IDIV__ 1 +// ARMV7K:#define __ARM_ARCH_PROFILE 'A' +// ARMV7K:#define __ARM_FEATURE_DSP 1 +// ARMV7K:#define __ARM_FP 0xE +// ARMV7K:#define __ARM_PCS_VFP 1 + + // Test whether predefines are as expected when targeting cortex-a8. // RUN: %clang -target armv7 -mcpu=cortex-a8 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A8 %s // RUN: %clang -target armv7 -mthumb -mcpu=cortex-a8 -x c -E -dM %s -o - | FileCheck -match-full-lines --check-prefix=A8 %s