diff options
author | Daniel Sanders <daniel.sanders@imgtec.com> | 2014-07-09 13:56:23 +0000 |
---|---|---|
committer | Daniel Sanders <daniel.sanders@imgtec.com> | 2014-07-09 13:56:23 +0000 |
commit | 9500d2d75185d05e45d785050d158acdfa0f34e8 (patch) | |
tree | efa295275592e1cc07790ae5a640a8e26f3fd9a7 /clang/test/Preprocessor/init.c | |
parent | cfbb71dfb6464d9d442d6fc2fa0b76ded3981a53 (diff) | |
download | bcm5719-llvm-9500d2d75185d05e45d785050d158acdfa0f34e8.tar.gz bcm5719-llvm-9500d2d75185d05e45d785050d158acdfa0f34e8.zip |
[mips][mips64r6] Define _MIPS_FPSET, __mips_fpr, and __mips_nan2008 correctly on MIPS32r6/MIPS64r6
Summary:
This removes the need to pass -mnan=2008 explicitly to be able to compile
the test-suite for MIPS32r6/MIPS64r6.
Differential Revision: http://reviews.llvm.org/D4433
llvm-svn: 212619
Diffstat (limited to 'clang/test/Preprocessor/init.c')
-rw-r--r-- | clang/test/Preprocessor/init.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/init.c b/clang/test/Preprocessor/init.c index a3cc2eda886..3f15502b807 100644 --- a/clang/test/Preprocessor/init.c +++ b/clang/test/Preprocessor/init.c @@ -2864,6 +2864,16 @@ // MIPS64-NOMFP64:#define _MIPS_FPSET 32 // MIPS64-NOMFP64:#define __mips_fpr 32 // +// RUN: %clang_cc1 -target-cpu mips32r6 \ +// RUN: -E -dM -triple=mips-none-none < /dev/null \ +// RUN: | FileCheck -check-prefix MIPS-XXR6 %s +// RUN: %clang_cc1 -target-cpu mips64r6 \ +// RUN: -E -dM -triple=mips64-none-none < /dev/null \ +// RUN: | FileCheck -check-prefix MIPS-XXR6 %s +// MIPS-XXR6:#define _MIPS_FPSET 32 +// MIPS-XXR6:#define __mips_fpr 64 +// MIPS-XXR6:#define __mips_nan2008 1 +// // RUN: %clang_cc1 -E -dM -ffreestanding -triple=msp430-none-none < /dev/null | FileCheck -check-prefix MSP430 %s // // MSP430:#define MSP430 1 |