From 9500d2d75185d05e45d785050d158acdfa0f34e8 Mon Sep 17 00:00:00 2001 From: Daniel Sanders Date: Wed, 9 Jul 2014 13:56:23 +0000 Subject: [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 --- clang/test/Preprocessor/init.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'clang/test/Preprocessor/init.c') 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 -- cgit v1.2.3