From 7e2afb9168b3f07dd3a0d97cc7d7572bd5b6e67b Mon Sep 17 00:00:00 2001 From: "Bradley T. Hughes" Date: Fri, 17 Feb 2012 09:41:35 +0100 Subject: Document Q_PROCESSOR_* macros All known processors and their variants/revisions are documented. I added Q_PROCESSOR_MIPS_V based on the MIPS64 online documentation, which documents MIPS64 as a superset of MIPS IV and MIPS V. Change-Id: Ie2796d4f03499283aa2c96d60f5e37bd74a36ab0 Reviewed-by: Thiago Macieira Reviewed-by: Casper van Donderen --- src/corelib/global/qprocessordetection.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/corelib/global/qprocessordetection.h') diff --git a/src/corelib/global/qprocessordetection.h b/src/corelib/global/qprocessordetection.h index bec070747f..69815ba199 100644 --- a/src/corelib/global/qprocessordetection.h +++ b/src/corelib/global/qprocessordetection.h @@ -137,6 +137,9 @@ # if defined(_MIPS_ARCH_MIPS4) || (defined(__mips) && __mips - 0 >= 4) # define Q_PROCESSOR_MIPS_IV # endif +# if defined(_MIPS_ARCH_MIPS5) || (defined(__mips) && __mips - 0 >= 5) +# define Q_PROCESSOR_MIPS_V +# endif # if defined(_MIPS_ARCH_MIPS64) || defined(__mips64) # define Q_PROCESSOR_MIPS_64 # endif -- cgit v1.2.3