git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7752 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
99f5f9e434
commit
ec6506668f
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,129 @@
|
||||||
|
// ---------------------------------------------------------------------
|
||||||
|
// This file is provided by Gimpel Software (www.gimpel.com) for use with
|
||||||
|
// its products PC-lint and FlexeLint.
|
||||||
|
//
|
||||||
|
// Redistribution and use of this file, with or without modification, is
|
||||||
|
// permitted provided that any such redistribution retains this notice.
|
||||||
|
// ---------------------------------------------------------------------
|
||||||
|
|
||||||
|
#ifndef CO_GCC_H_
|
||||||
|
#define CO_GCC_H_
|
||||||
|
/*lint -save -w1 */
|
||||||
|
|
||||||
|
#ifdef _lint /* Make sure no compiler comes this way */
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* Standard library headers typically define the assert macro so that it
|
||||||
|
expands to a complicated conditional expression that uses special
|
||||||
|
funtions that Lint does not know about by default. For linting
|
||||||
|
purposes, we can simplify things a bit by forcing assert() to expand to
|
||||||
|
a call to a special function that has the appropriate 'assert'
|
||||||
|
semantics.
|
||||||
|
*/
|
||||||
|
//lint -function( __assert, __lint_assert )
|
||||||
|
void __lint_assert( int );
|
||||||
|
//lint ++d"assert(e)=__lint_assert(!!(e))"
|
||||||
|
//(++d makes this definition permanently immutable for the Lint run.)
|
||||||
|
//Now that we've made our own 'assert', we need to keep people from being
|
||||||
|
//punished when the marco in 'assert.h' appears not to be used:
|
||||||
|
//lint -efile(766,*assert.h)
|
||||||
|
|
||||||
|
typedef char *__builtin_va_list;
|
||||||
|
|
||||||
|
/*lint -e{171} */
|
||||||
|
__builtin_va_list __lint_init_va(...);
|
||||||
|
|
||||||
|
void __builtin_va_end( __builtin_va_list );
|
||||||
|
/*lint
|
||||||
|
++d"__builtin_va_start(ap,parmN)=((ap)=__lint_init_va(parmN))"
|
||||||
|
++d"__builtin_va_arg(a,b)=(*( ((b) *) ( (((a) += sizeof(b)) - sizeof(b) )))"
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
The headers included below must be generated; For C++, generate
|
||||||
|
with:
|
||||||
|
|
||||||
|
g++ [usual build options] -E -dM t.cpp >lint_cppmac.h
|
||||||
|
|
||||||
|
For C, generate with:
|
||||||
|
|
||||||
|
gcc [usual build options] -E -dM t.c >lint_cmac.h
|
||||||
|
|
||||||
|
...where "t.cpp" and "t.c" are empty source files.
|
||||||
|
|
||||||
|
It's important to use the same compiler options used when compiling
|
||||||
|
project code because they can affect the existence and precise
|
||||||
|
definitions of certain predefined macros. See gcc-readme.txt for
|
||||||
|
details and a tutorial.
|
||||||
|
*/
|
||||||
|
#if defined(__cplusplus)
|
||||||
|
# include "lint_cppmac.h" // DO NOT COMMENT THIS OUT. DO NOT SUPPRESS ERROR 322. (If you see an error here, your Lint configuration is broken; check -i options and ensure that you have generated lint_cppmac.h as documented in gcc-readme.txt. Otherwise Gimpel Software cannot support your configuration.)
|
||||||
|
#else
|
||||||
|
# include "lint_cmac.h" // DO NOT COMMENT THIS OUT. DO NOT SUPPRESS ERROR 322. (If you see an error here, your Lint configuration is broken; check -i options and ensure that you have generated lint_cmac.h as documented in gcc-readme.txt. Otherwise Gimpel Software cannot support your configuration.)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* If the macro set given by the generated macro files must be adjusted in
|
||||||
|
order for Lint to cope, then you can make those adjustments here.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define LINT_CO_GCC_H_GCC_VERSION ( __GNUC__ * 10000 + \
|
||||||
|
__GNUC_MINOR__ * 100 + \
|
||||||
|
__GNUC_PATCHLEVEL__ )
|
||||||
|
|
||||||
|
/* The following is a workaround for versions of GCC with bug 25717, in
|
||||||
|
which the preprocessor does not dump a #define directive for __STDC__
|
||||||
|
when -dM is given:
|
||||||
|
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25717
|
||||||
|
|
||||||
|
We know the unconditional definition of __STDC__ was introduced no
|
||||||
|
later than version 3.0; the preprocessor bug was fixed no later than
|
||||||
|
version 4.1.0.
|
||||||
|
*/
|
||||||
|
#if ( LINT_CO_GCC_H_GCC_VERSION >= 30000 && \
|
||||||
|
LINT_CO_GCC_H_GCC_VERSION < 40100 )
|
||||||
|
# define __STDC__ 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if !__cplusplus && !__STRICT_ANSI__ && __STDC_VERSION__ < 199901L
|
||||||
|
/* apparently, the code is compiled with -std=gnu89 (as opposed to -std=c89),
|
||||||
|
so: */
|
||||||
|
/*lint -rw_asgn(inline,__inline) */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if LINT_CO_GCC_H_GCC_VERSION >= 40300
|
||||||
|
# define __COUNTER__ __lint__COUNTER__
|
||||||
|
//lint +rw( *type_traits ) // Enable type traits support
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
} /* extern "C" */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if _lint >= 909 // For 9.00i and later:
|
||||||
|
//// __attribute__ is GCC's __attribute__:
|
||||||
|
//
|
||||||
|
//lint -rw_asgn(__attribute__,__gcc_attribute__)
|
||||||
|
//lint -rw_asgn(__attribute, __gcc_attribute__)
|
||||||
|
//
|
||||||
|
//// Prevent "__attribute__" from being defined as a macro:
|
||||||
|
//
|
||||||
|
//lint --u"__attribute__"
|
||||||
|
//lint --u"__attribute"
|
||||||
|
//
|
||||||
|
//// Because an attribute-specifier is a form of
|
||||||
|
//// declaration-modifier, and because it can appear at the
|
||||||
|
//// beginning of a decl-specifier-seq, we must enable "Early
|
||||||
|
//// Modifiers":
|
||||||
|
//
|
||||||
|
//lint +fem
|
||||||
|
#else // for 9.00h and earlier:
|
||||||
|
//lint -d__attribute__()=
|
||||||
|
//lint -d__attribute()=
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* _lint */
|
||||||
|
/*lint -restore */
|
||||||
|
#endif /* CO_GCC_H_ */
|
|
@ -0,0 +1,209 @@
|
||||||
|
/* Date Stamp */ -d"_lint_co_gcc_lnt=co-gcc.lnt modified 12-Jun-2014"
|
||||||
|
/* To document usage use: -message( "Using " _lint_co_gcc_lnt ) */
|
||||||
|
// ---------------------------------------------------------------------
|
||||||
|
// This file is provided by Gimpel Software (www.gimpel.com) for use with
|
||||||
|
// its products PC-lint and FlexeLint.
|
||||||
|
//
|
||||||
|
// Redistribution and use of this file, with or without modification, is
|
||||||
|
// permitted provided that any such redistribution retains this notice.
|
||||||
|
// ---------------------------------------------------------------------
|
||||||
|
/* co-gcc.lnt: This is the seed file for configuring Lint for use with
|
||||||
|
GCC versions 2.95.3 and later.
|
||||||
|
|
||||||
|
Like all compiler options files this file is intended to be used
|
||||||
|
as follows:
|
||||||
|
|
||||||
|
lint co-gcc.lnt source-files-to-be-linted
|
||||||
|
|
||||||
|
Some of the information that co-gcc.lnt requires needs to be furnished
|
||||||
|
with the help of the gcc system itself. The easiest way to generate
|
||||||
|
this information is to use the makefile co-gcc.mak (supplied with the
|
||||||
|
Lint distribution) in an invocation of GNU Make; for details, see the
|
||||||
|
commentary at the top of co-gcc.mak.
|
||||||
|
*/
|
||||||
|
|
||||||
|
-cgnu // Notifies FlexeLint that gcc is being used.
|
||||||
|
|
||||||
|
// ===========================
|
||||||
|
// Preprocessor Configuration:
|
||||||
|
+fdi // GCC starts its #include search in the directory of the including
|
||||||
|
// file.
|
||||||
|
|
||||||
|
++fln // Allow:
|
||||||
|
// # digit-sequence " [s-char-sequence] " new-line
|
||||||
|
// as a synonym for:
|
||||||
|
// # line digit-sequence " [s-char-sequence] " new-line
|
||||||
|
// GCC additionally allows flag values to follow the
|
||||||
|
// s-char-sequence, but currently Lint ignores them.
|
||||||
|
|
||||||
|
-header(pclint/co-gcc.h) // Includes headers generated by GCC (bringing in
|
||||||
|
// predefined macros).
|
||||||
|
+libh(pclint/co-gcc.h) // Marks that header as library code.
|
||||||
|
|
||||||
|
pclint/gcc-include-path.lnt // This .lnt file should contain --i options
|
||||||
|
// and should be generated by invoking gcc with its '-v' option.
|
||||||
|
// (GCC's implicit #include search path is presented in the output.)
|
||||||
|
// This happens automatically when 'make -f co-gcc.mak' is invoked.
|
||||||
|
|
||||||
|
// Assertion directives (a feature of GCC's preprocessor) have been
|
||||||
|
// considered obsolete in GCC's documentation since version 3.0, so we do
|
||||||
|
// not use them here. If support for #assert is needed in the form of a
|
||||||
|
// lint option, one may use '-a#' like so:
|
||||||
|
// -a#machine(i386) // #assert's machine(i386) (SVR4 facility).
|
||||||
|
|
||||||
|
// File extensions:
|
||||||
|
// From the GCC man page:
|
||||||
|
//
|
||||||
|
// file.cc
|
||||||
|
// file.cp
|
||||||
|
// file.cxx
|
||||||
|
// file.cpp
|
||||||
|
// file.CPP
|
||||||
|
// file.c++
|
||||||
|
// file.C
|
||||||
|
// C++ source code that must be preprocessed. Note that in .cxx, the
|
||||||
|
// last two letters must both be literally x. Likewise, .C refers to
|
||||||
|
// a literal capital C.
|
||||||
|
//
|
||||||
|
// We emulate this with:
|
||||||
|
|
||||||
|
+cpp(.cc)
|
||||||
|
+cpp(.cp)
|
||||||
|
+cpp(.cxx)
|
||||||
|
+cpp(.cpp)
|
||||||
|
+cpp(.c++)
|
||||||
|
// Note the exceptions:
|
||||||
|
// +cpp(.CPP)
|
||||||
|
// +cpp(.C)
|
||||||
|
// These are commented out for the default config because they seem to
|
||||||
|
// cause trouble more often than not. For starters, it is problematic
|
||||||
|
// with filesystems that are case-insensitive (which has become common
|
||||||
|
// even on some POSIX systems).
|
||||||
|
|
||||||
|
// =============
|
||||||
|
// Size Options:
|
||||||
|
// +fwc // wchar_t might be builtin; if so, uncomment this option. (NOTE:
|
||||||
|
// // this option needs to be set before a size option is given for
|
||||||
|
// // wchar_t; see the documentation for -sw# in the Lint manual.)
|
||||||
|
|
||||||
|
pclint/size-options.lnt // This .lnt file should be generated (preferrably
|
||||||
|
// by a program created by invoking GCC with the compile options that
|
||||||
|
// are used in the compilation of the project to be linted). This
|
||||||
|
// happens automatically when 'make -f co-gcc.mak' is invoked.
|
||||||
|
|
||||||
|
|
||||||
|
// ===========================================
|
||||||
|
// +rw and -d options to cope with GNU syntax:
|
||||||
|
+ppw(ident) // Tolerate #ident
|
||||||
|
+ppw(warning)
|
||||||
|
|
||||||
|
// GCC provides alternative spellings of certain keywords:
|
||||||
|
+rw(__inline)
|
||||||
|
-rw_asgn(__inline__,__inline)
|
||||||
|
-rw_asgn(__header_always_inline,__inline)
|
||||||
|
-rw_asgn(__header_inline,__inline)
|
||||||
|
|
||||||
|
-rw_asgn(__signed__,signed)
|
||||||
|
-rw_asgn(__signed,signed)
|
||||||
|
-rw_asgn( __volatile__, volatile )
|
||||||
|
-rw_asgn( __volatile, volatile )
|
||||||
|
+rw(restrict)
|
||||||
|
-rw_asgn(__restrict,restrict)
|
||||||
|
-rw_asgn(__restrict__,restrict)
|
||||||
|
++d"__const=const" // gconv.h uses __const rather than const
|
||||||
|
++d"const=const" // ensure const expands to const.
|
||||||
|
|
||||||
|
-rw_asgn( asm, _up_to_brackets )
|
||||||
|
-rw_asgn( __asm, _up_to_brackets )
|
||||||
|
-rw_asgn( __asm__, _up_to_brackets )
|
||||||
|
// This re-definition of the various spellings of the asm keyword enables
|
||||||
|
// Lint to pass gracefully over expression-statements like:
|
||||||
|
// __asm __volatile ("fsqrt" : "=t" (__result) : "0" (__x));
|
||||||
|
// But it may be necessary to suppress certain error messages that are
|
||||||
|
// triggered by tokens that are part of an assembly declaration or
|
||||||
|
// statement. For example:
|
||||||
|
|
||||||
|
// -d"__asm__(p...)=/*lint -e{19}*/ __asm__(p)"
|
||||||
|
|
||||||
|
// ...causes Lint to be quiet about the semicolon that follows an
|
||||||
|
// __asm__() declaration. Note, the -e{N} form of suppression takes
|
||||||
|
// effect only for the forward-declaration, definition or
|
||||||
|
// [possibly-compound] statement that immediately follows. Because a
|
||||||
|
// semicolon is seen as a declaration-terminator, Error 19 will be
|
||||||
|
// re-enabled immediately after the semicolon in '__asm__(...);'.
|
||||||
|
// (The elipsis after the macro parameter p allows zero or more commas to
|
||||||
|
// appear in the operand.)
|
||||||
|
//
|
||||||
|
// If you encounter other diagnostics that appear to need suppression in
|
||||||
|
// or near assembly regions, please let us know!
|
||||||
|
//
|
||||||
|
-esym(123,__asm__)
|
||||||
|
|
||||||
|
-rw_asgn(__alignof__,__alignof)
|
||||||
|
|
||||||
|
// "__extension__" is GCC's way of allowing the use of non-standard
|
||||||
|
// constructs in a strict Standard-conforming mode. We don't currently
|
||||||
|
// have explicit support for it, but we can use local suppressions. For
|
||||||
|
// example, we can use -e(160) so that we will not see any Errors about
|
||||||
|
// GNU statement-expressions wrapped in __extension__().
|
||||||
|
++d"__extension__=/*lint -e(160) */"
|
||||||
|
|
||||||
|
++d"__null=0"
|
||||||
|
+rw(_to_semi) // needed for the two macros above.
|
||||||
|
+rw(__typeof__) // activate __typeof__ keyword
|
||||||
|
-d"__typeof=__typeof__" // an alternative to using __typeof__
|
||||||
|
|
||||||
|
-rw(__except) // This MS reserved word is used as an identifier
|
||||||
|
+rw( __complex__, __real__, __imag__ ) // reserved words that can be ignored.
|
||||||
|
++d"__builtin_strchr=(char*)" // permits the inline definition ...
|
||||||
|
++d"__builtin_strpbrk=(char*)" // of these functions to be linted ...
|
||||||
|
++d"__builtin_strrchr=(char*)" // without drawing a complaint
|
||||||
|
++d"__builtin_strstr=(char*)" // about the use of a non-standard name
|
||||||
|
++d"__PRETTY_FUNCTION__=___function___" // lint defines ___function___ internally
|
||||||
|
++d"__FUNCTION__=___function___" // lint defines ___function___ internally
|
||||||
|
++d"__func__=___function___" // Some C++ modes suport the implicit __func__
|
||||||
|
// identifier.
|
||||||
|
-ident($)
|
||||||
|
|
||||||
|
// =========================================================
|
||||||
|
// Other options supporting GNU C/C++ syntax:
|
||||||
|
+fld // enables the processing of _L_abel _D_esignators E.g.:
|
||||||
|
// union { double d; int i; } u = { d: 3.141 };
|
||||||
|
|
||||||
|
// =========================================================
|
||||||
|
// Generally useful suppressions:
|
||||||
|
-wlib(1) // sets the warning level within library headers to 1
|
||||||
|
// (no warnings, just syntax errors). Comment out if you
|
||||||
|
// are actually linting library headers.
|
||||||
|
-elib(123) // 123 is really a warning, but it's in the "Error" range.
|
||||||
|
-elib(93) // allow newlines within quoted string arguments to macros
|
||||||
|
-elib(46) // allow bit fields to have integral types other than
|
||||||
|
// '_Bool' and 'int'.
|
||||||
|
-elibsym(628) // Suppress 628 for __builtin symbols.
|
||||||
|
|
||||||
|
-esym(528,__huge_val,__nan,__qnan,__qnanf,__snan,__snanf)
|
||||||
|
// We don't care if we don't reference some GNU functions
|
||||||
|
-esym(528,__gnu_malloc,__gnu_calloc)
|
||||||
|
|
||||||
|
// The following functions exhibit variable return modes.
|
||||||
|
// That is, they may equally-usefully be called for a value
|
||||||
|
// as called just for their effects. Accordingly we inhibit
|
||||||
|
// Warning 534 for these functions.
|
||||||
|
// Feel free to add to or subtract from this list.
|
||||||
|
|
||||||
|
-esym(534,close,creat,fclose,fprintf,fputc)
|
||||||
|
-esym(534,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
|
||||||
|
-esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
|
||||||
|
-esym(534,strncat,strncpy,unlink,write)
|
||||||
|
|
||||||
|
// For non-ANSI compilers we suppress messages 515 and 516
|
||||||
|
// for functions known to have variable argument lists.
|
||||||
|
// For ANSI compilers, header files should take care of this.
|
||||||
|
|
||||||
|
-esym(515,fprintf,printf,sprintf,fscanf,scanf,sscanf)
|
||||||
|
-esym(516,fprintf,printf,sprintf,fscanf,scanf,sscanf)
|
||||||
|
-esym(1702,*operator<<,*operator>>)
|
||||||
|
-esym(534,*operator<<,*operator>>)
|
||||||
|
-esym(1055,*__builtin*)
|
||||||
|
-esym(718,*__builtin*) // The compiler does not need these ...
|
||||||
|
-esym(746,*__builtin*) // declared and it knows their prototypes.
|
|
@ -0,0 +1,6 @@
|
||||||
|
--i"C:/ChibiStudio/tools/GNU Tools ARM Embedded/4.9 2014q4/arm-none-eabi/include"
|
||||||
|
--i"C:/ChibiStudio/tools/GNU Tools ARM Embedded/4.9 2014q4/arm-none-eabi/include/c++/4.9.3"
|
||||||
|
--i"C:/ChibiStudio/tools/GNU Tools ARM Embedded/4.9 2014q4/arm-none-eabi/include/c++/4.9.3/arm-none-eabi"
|
||||||
|
--i"C:/ChibiStudio/tools/GNU Tools ARM Embedded/4.9 2014q4/arm-none-eabi/include/c++/4.9.3/backward"
|
||||||
|
--i"C:/ChibiStudio/tools/GNU Tools ARM Embedded/4.9 2014q4/lib/gcc/arm-none-eabi/4.9.3/include"
|
||||||
|
--i"C:/ChibiStudio/tools/GNU Tools ARM Embedded/4.9 2014q4/lib/gcc/arm-none-eabi/4.9.3/include-fixed"
|
|
@ -0,0 +1,330 @@
|
||||||
|
#define __DBL_MIN_EXP__ (-1021)
|
||||||
|
#define __HQ_FBIT__ 15
|
||||||
|
#define __UINT_LEAST16_MAX__ 65535
|
||||||
|
#define __ATOMIC_ACQUIRE 2
|
||||||
|
#define __SFRACT_IBIT__ 0
|
||||||
|
#define __FLT_MIN__ 1.1754943508222875e-38F
|
||||||
|
#define __UFRACT_MAX__ 0XFFFFP-16UR
|
||||||
|
#define __UINT_LEAST8_TYPE__ unsigned char
|
||||||
|
#define __DQ_FBIT__ 63
|
||||||
|
#define __INTMAX_C(c) c ## LL
|
||||||
|
#define __ULFRACT_FBIT__ 32
|
||||||
|
#define __SACCUM_EPSILON__ 0x1P-7HK
|
||||||
|
#define __CHAR_BIT__ 8
|
||||||
|
#define __USQ_IBIT__ 0
|
||||||
|
#define __UINT8_MAX__ 255
|
||||||
|
#define __ACCUM_FBIT__ 15
|
||||||
|
#define __WINT_MAX__ 4294967295U
|
||||||
|
#define __USFRACT_FBIT__ 8
|
||||||
|
#define __ORDER_LITTLE_ENDIAN__ 1234
|
||||||
|
#define __SIZE_MAX__ 4294967295U
|
||||||
|
#define __WCHAR_MAX__ 4294967295U
|
||||||
|
#define __LACCUM_IBIT__ 32
|
||||||
|
#define __DBL_DENORM_MIN__ ((double)4.9406564584124654e-324L)
|
||||||
|
#define __GCC_ATOMIC_CHAR_LOCK_FREE 1
|
||||||
|
#define __FLT_EVAL_METHOD__ 0
|
||||||
|
#define __LLACCUM_MAX__ 0X7FFFFFFFFFFFFFFFP-31LLK
|
||||||
|
#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 1
|
||||||
|
#define __FRACT_FBIT__ 15
|
||||||
|
#define __UINT_FAST64_MAX__ 18446744073709551615ULL
|
||||||
|
#define __SIG_ATOMIC_TYPE__ int
|
||||||
|
#define __UACCUM_FBIT__ 16
|
||||||
|
#define __DBL_MIN_10_EXP__ (-307)
|
||||||
|
#define __FINITE_MATH_ONLY__ 0
|
||||||
|
#define __ARMEL__ 1
|
||||||
|
#define __LFRACT_IBIT__ 0
|
||||||
|
#define __GNUC_PATCHLEVEL__ 4
|
||||||
|
#define __LFRACT_MAX__ 0X7FFFFFFFP-31LR
|
||||||
|
#define __UINT_FAST8_MAX__ 4294967295U
|
||||||
|
#define __DEC64_MAX_EXP__ 385
|
||||||
|
#define __INT8_C(c) c
|
||||||
|
#define __UINT_LEAST64_MAX__ 18446744073709551615ULL
|
||||||
|
#define __SA_FBIT__ 15
|
||||||
|
#define __SHRT_MAX__ 32767
|
||||||
|
#define __LDBL_MAX__ 1.7976931348623157e+308L
|
||||||
|
#define __FRACT_MAX__ 0X7FFFP-15R
|
||||||
|
#define __UFRACT_FBIT__ 16
|
||||||
|
#define __UFRACT_MIN__ 0.0UR
|
||||||
|
#define __UINT_LEAST8_MAX__ 255
|
||||||
|
#define __GCC_ATOMIC_BOOL_LOCK_FREE 1
|
||||||
|
#define __UINTMAX_TYPE__ long long unsigned int
|
||||||
|
#define __LLFRACT_EPSILON__ 0x1P-63LLR
|
||||||
|
#define __DEC32_EPSILON__ 1E-6DF
|
||||||
|
#define __CHAR_UNSIGNED__ 1
|
||||||
|
#define __UINT32_MAX__ 4294967295UL
|
||||||
|
#define __ULFRACT_MAX__ 0XFFFFFFFFP-32ULR
|
||||||
|
#define __TA_IBIT__ 64
|
||||||
|
#define __LDBL_MAX_EXP__ 1024
|
||||||
|
#define __WINT_MIN__ 0U
|
||||||
|
#define __ULLFRACT_MIN__ 0.0ULLR
|
||||||
|
#define __SCHAR_MAX__ 127
|
||||||
|
#define __WCHAR_MIN__ 0U
|
||||||
|
#define __INT64_C(c) c ## LL
|
||||||
|
#define __DBL_DIG__ 15
|
||||||
|
#define __GCC_ATOMIC_POINTER_LOCK_FREE 1
|
||||||
|
#define __LLACCUM_MIN__ (-0X1P31LLK-0X1P31LLK)
|
||||||
|
#define __SIZEOF_INT__ 4
|
||||||
|
#define __SIZEOF_POINTER__ 4
|
||||||
|
#define __USACCUM_IBIT__ 8
|
||||||
|
#define __USER_LABEL_PREFIX__
|
||||||
|
#define __STDC_HOSTED__ 1
|
||||||
|
#define __LDBL_HAS_INFINITY__ 1
|
||||||
|
#define __LFRACT_MIN__ (-0.5LR-0.5LR)
|
||||||
|
#define __HA_IBIT__ 8
|
||||||
|
#define __TQ_IBIT__ 0
|
||||||
|
#define __FLT_EPSILON__ 1.1920928955078125e-7F
|
||||||
|
#define __APCS_32__ 1
|
||||||
|
#define __USFRACT_IBIT__ 0
|
||||||
|
#define __LDBL_MIN__ 2.2250738585072014e-308L
|
||||||
|
#define __FRACT_MIN__ (-0.5R-0.5R)
|
||||||
|
#define __DEC32_MAX__ 9.999999E96DF
|
||||||
|
#define __DA_IBIT__ 32
|
||||||
|
#define __INT32_MAX__ 2147483647L
|
||||||
|
#define __UQQ_FBIT__ 8
|
||||||
|
#define __SIZEOF_LONG__ 4
|
||||||
|
#define __UACCUM_MAX__ 0XFFFFFFFFP-16UK
|
||||||
|
#define __UINT16_C(c) c
|
||||||
|
#define __DECIMAL_DIG__ 17
|
||||||
|
#define __LFRACT_EPSILON__ 0x1P-31LR
|
||||||
|
#define __ULFRACT_MIN__ 0.0ULR
|
||||||
|
#define __LDBL_HAS_QUIET_NAN__ 1
|
||||||
|
#define __ULACCUM_IBIT__ 32
|
||||||
|
#define __UACCUM_EPSILON__ 0x1P-16UK
|
||||||
|
#define __GNUC__ 4
|
||||||
|
#define __ULLACCUM_MAX__ 0XFFFFFFFFFFFFFFFFP-32ULLK
|
||||||
|
#define __HQ_IBIT__ 0
|
||||||
|
#define __FLT_HAS_DENORM__ 1
|
||||||
|
#define __SIZEOF_LONG_DOUBLE__ 8
|
||||||
|
#define __BIGGEST_ALIGNMENT__ 8
|
||||||
|
#define __DQ_IBIT__ 0
|
||||||
|
#define __DBL_MAX__ ((double)1.7976931348623157e+308L)
|
||||||
|
#define __ULFRACT_IBIT__ 0
|
||||||
|
#define __INT_FAST32_MAX__ 2147483647
|
||||||
|
#define __DBL_HAS_INFINITY__ 1
|
||||||
|
#define __ACCUM_IBIT__ 16
|
||||||
|
#define __DEC32_MIN_EXP__ (-94)
|
||||||
|
#define __THUMB_INTERWORK__ 1
|
||||||
|
#define __LACCUM_MAX__ 0X7FFFFFFFFFFFFFFFP-31LK
|
||||||
|
#define __INT_FAST16_TYPE__ int
|
||||||
|
#define __LDBL_HAS_DENORM__ 1
|
||||||
|
#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL
|
||||||
|
#define __INT_LEAST32_MAX__ 2147483647L
|
||||||
|
#define __ARM_PCS 1
|
||||||
|
#define __DEC32_MIN__ 1E-95DF
|
||||||
|
#define __ACCUM_MAX__ 0X7FFFFFFFP-15K
|
||||||
|
#define __DBL_MAX_EXP__ 1024
|
||||||
|
#define __USACCUM_EPSILON__ 0x1P-8UHK
|
||||||
|
#define __DEC128_EPSILON__ 1E-33DL
|
||||||
|
#define __SFRACT_MAX__ 0X7FP-7HR
|
||||||
|
#define __FRACT_IBIT__ 0
|
||||||
|
#define __PTRDIFF_MAX__ 2147483647
|
||||||
|
#define __UACCUM_MIN__ 0.0UK
|
||||||
|
#define __UACCUM_IBIT__ 16
|
||||||
|
#define __LONG_LONG_MAX__ 9223372036854775807LL
|
||||||
|
#define __SIZEOF_SIZE_T__ 4
|
||||||
|
#define __ULACCUM_MAX__ 0XFFFFFFFFFFFFFFFFP-32ULK
|
||||||
|
#define __SIZEOF_WINT_T__ 4
|
||||||
|
#define __SA_IBIT__ 16
|
||||||
|
#define __ULLACCUM_MIN__ 0.0ULLK
|
||||||
|
#define __GXX_ABI_VERSION 1002
|
||||||
|
#define __UTA_FBIT__ 64
|
||||||
|
#define __SOFTFP__ 1
|
||||||
|
#define __FLT_MIN_EXP__ (-125)
|
||||||
|
#define __USFRACT_MAX__ 0XFFP-8UHR
|
||||||
|
#define __UFRACT_IBIT__ 0
|
||||||
|
#define __INT_FAST64_TYPE__ long long int
|
||||||
|
#define __DBL_MIN__ ((double)2.2250738585072014e-308L)
|
||||||
|
#define __LACCUM_MIN__ (-0X1P31LK-0X1P31LK)
|
||||||
|
#define __ULLACCUM_FBIT__ 32
|
||||||
|
#define __GXX_TYPEINFO_EQUALITY_INLINE 0
|
||||||
|
#define __ULLFRACT_EPSILON__ 0x1P-64ULLR
|
||||||
|
#define __USES_INITFINI__ 1
|
||||||
|
#define __DEC128_MIN__ 1E-6143DL
|
||||||
|
#define __REGISTER_PREFIX__
|
||||||
|
#define __UINT16_MAX__ 65535
|
||||||
|
#define __DBL_HAS_DENORM__ 1
|
||||||
|
#define __ACCUM_MIN__ (-0X1P15K-0X1P15K)
|
||||||
|
#define __SQ_IBIT__ 0
|
||||||
|
#define __UINT8_TYPE__ unsigned char
|
||||||
|
#define __UHA_FBIT__ 8
|
||||||
|
#define __NO_INLINE__ 1
|
||||||
|
#define __SFRACT_MIN__ (-0.5HR-0.5HR)
|
||||||
|
#define __UTQ_FBIT__ 128
|
||||||
|
#define __FLT_MANT_DIG__ 24
|
||||||
|
#define __VERSION__ "4.7.4 20130913 (release) [ARM/embedded-4_7-branch revision 202601]"
|
||||||
|
#define __UINT64_C(c) c ## ULL
|
||||||
|
#define __ULLFRACT_FBIT__ 64
|
||||||
|
#define __FRACT_EPSILON__ 0x1P-15R
|
||||||
|
#define __ULACCUM_MIN__ 0.0ULK
|
||||||
|
#define __UDA_FBIT__ 32
|
||||||
|
#define __LLACCUM_EPSILON__ 0x1P-31LLK
|
||||||
|
#define __GCC_ATOMIC_INT_LOCK_FREE 1
|
||||||
|
#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||||
|
#define __USFRACT_MIN__ 0.0UHR
|
||||||
|
#define __UQQ_IBIT__ 0
|
||||||
|
#define __INT32_C(c) c ## L
|
||||||
|
#define __DEC64_EPSILON__ 1E-15DD
|
||||||
|
#define __ORDER_PDP_ENDIAN__ 3412
|
||||||
|
#define __DEC128_MIN_EXP__ (-6142)
|
||||||
|
#define __UHQ_FBIT__ 16
|
||||||
|
#define __LLACCUM_FBIT__ 31
|
||||||
|
#define __INT_FAST32_TYPE__ int
|
||||||
|
#define __UINT_LEAST16_TYPE__ short unsigned int
|
||||||
|
#define __INT16_MAX__ 32767
|
||||||
|
#define __SIZE_TYPE__ unsigned int
|
||||||
|
#define __UINT64_MAX__ 18446744073709551615ULL
|
||||||
|
#define __UDQ_FBIT__ 64
|
||||||
|
#define __INT8_TYPE__ signed char
|
||||||
|
#define __ELF__ 1
|
||||||
|
#define __ULFRACT_EPSILON__ 0x1P-32ULR
|
||||||
|
#define __LLFRACT_FBIT__ 63
|
||||||
|
#define __FLT_RADIX__ 2
|
||||||
|
#define __INT_LEAST16_TYPE__ short int
|
||||||
|
#define __LDBL_EPSILON__ 2.2204460492503131e-16L
|
||||||
|
#define __UINTMAX_C(c) c ## ULL
|
||||||
|
#define __SACCUM_MAX__ 0X7FFFP-7HK
|
||||||
|
#define __SIG_ATOMIC_MAX__ 2147483647
|
||||||
|
#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 1
|
||||||
|
#define __VFP_FP__ 1
|
||||||
|
#define __SIZEOF_PTRDIFF_T__ 4
|
||||||
|
#define __LACCUM_EPSILON__ 0x1P-31LK
|
||||||
|
#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF
|
||||||
|
#define __INT_FAST16_MAX__ 2147483647
|
||||||
|
#define __UINT_FAST32_MAX__ 4294967295U
|
||||||
|
#define __UINT_LEAST64_TYPE__ long long unsigned int
|
||||||
|
#define __USACCUM_MAX__ 0XFFFFP-8UHK
|
||||||
|
#define __SFRACT_EPSILON__ 0x1P-7HR
|
||||||
|
#define __FLT_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT_MAX_10_EXP__ 38
|
||||||
|
#define __LONG_MAX__ 2147483647L
|
||||||
|
#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL
|
||||||
|
#define __FLT_HAS_INFINITY__ 1
|
||||||
|
#define __USA_FBIT__ 16
|
||||||
|
#define __UINT_FAST16_TYPE__ unsigned int
|
||||||
|
#define __DEC64_MAX__ 9.999999999999999E384DD
|
||||||
|
#define __CHAR16_TYPE__ short unsigned int
|
||||||
|
#define __PRAGMA_REDEFINE_EXTNAME 1
|
||||||
|
#define __INT_LEAST16_MAX__ 32767
|
||||||
|
#define __DEC64_MANT_DIG__ 16
|
||||||
|
#define __INT64_MAX__ 9223372036854775807LL
|
||||||
|
#define __UINT_LEAST32_MAX__ 4294967295UL
|
||||||
|
#define __SACCUM_FBIT__ 7
|
||||||
|
#define __GCC_ATOMIC_LONG_LOCK_FREE 1
|
||||||
|
#define __INT_LEAST64_TYPE__ long long int
|
||||||
|
#define __INT16_TYPE__ short int
|
||||||
|
#define __INT_LEAST8_TYPE__ signed char
|
||||||
|
#define __SQ_FBIT__ 31
|
||||||
|
#define __DEC32_MAX_EXP__ 97
|
||||||
|
#define __INT_FAST8_MAX__ 2147483647
|
||||||
|
#define __INTPTR_MAX__ 2147483647
|
||||||
|
#define __QQ_FBIT__ 7
|
||||||
|
#define __UTA_IBIT__ 64
|
||||||
|
#define __LDBL_MANT_DIG__ 53
|
||||||
|
#define __SFRACT_FBIT__ 7
|
||||||
|
#define __SACCUM_MIN__ (-0X1P7HK-0X1P7HK)
|
||||||
|
#define __DBL_HAS_QUIET_NAN__ 1
|
||||||
|
#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1)
|
||||||
|
#define __INTPTR_TYPE__ int
|
||||||
|
#define __UINT16_TYPE__ short unsigned int
|
||||||
|
#define __WCHAR_TYPE__ unsigned int
|
||||||
|
#define __SIZEOF_FLOAT__ 4
|
||||||
|
#define __USQ_FBIT__ 32
|
||||||
|
#define __UINTPTR_MAX__ 4294967295U
|
||||||
|
#define __DEC64_MIN_EXP__ (-382)
|
||||||
|
#define __ULLACCUM_IBIT__ 32
|
||||||
|
#define __INT_FAST64_MAX__ 9223372036854775807LL
|
||||||
|
#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1
|
||||||
|
#define __FLT_DIG__ 6
|
||||||
|
#define __UINT_FAST64_TYPE__ long long unsigned int
|
||||||
|
#define __INT_MAX__ 2147483647
|
||||||
|
#define __LACCUM_FBIT__ 31
|
||||||
|
#define __USACCUM_MIN__ 0.0UHK
|
||||||
|
#define __UHA_IBIT__ 8
|
||||||
|
#define __INT64_TYPE__ long long int
|
||||||
|
#define __FLT_MAX_EXP__ 128
|
||||||
|
#define __UTQ_IBIT__ 0
|
||||||
|
#define __DBL_MANT_DIG__ 53
|
||||||
|
#define __INT_LEAST64_MAX__ 9223372036854775807LL
|
||||||
|
#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 1
|
||||||
|
#define __DEC64_MIN__ 1E-383DD
|
||||||
|
#define __WINT_TYPE__ unsigned int
|
||||||
|
#define __UINT_LEAST32_TYPE__ long unsigned int
|
||||||
|
#define __SIZEOF_SHORT__ 2
|
||||||
|
#define __ULLFRACT_IBIT__ 0
|
||||||
|
#define __LDBL_MIN_EXP__ (-1021)
|
||||||
|
#define __arm__ 1
|
||||||
|
#define __UDA_IBIT__ 32
|
||||||
|
#define __INT_LEAST8_MAX__ 127
|
||||||
|
#define __LFRACT_FBIT__ 31
|
||||||
|
#define __LDBL_MAX_10_EXP__ 308
|
||||||
|
#define __ATOMIC_RELAXED 0
|
||||||
|
#define __DBL_EPSILON__ ((double)2.2204460492503131e-16L)
|
||||||
|
#define __UINT8_C(c) c
|
||||||
|
#define __INT_LEAST32_TYPE__ long int
|
||||||
|
#define __SIZEOF_WCHAR_T__ 4
|
||||||
|
#define __UINT64_TYPE__ long long unsigned int
|
||||||
|
#define __LLFRACT_MAX__ 0X7FFFFFFFFFFFFFFFP-63LLR
|
||||||
|
#define __TQ_FBIT__ 127
|
||||||
|
#define __INT_FAST8_TYPE__ int
|
||||||
|
#define __ULLACCUM_EPSILON__ 0x1P-32ULLK
|
||||||
|
#define __UHQ_IBIT__ 0
|
||||||
|
#define __LLACCUM_IBIT__ 32
|
||||||
|
#define __DBL_DECIMAL_DIG__ 17
|
||||||
|
#define __DEC_EVAL_METHOD__ 2
|
||||||
|
#define __TA_FBIT__ 63
|
||||||
|
#define __UDQ_IBIT__ 0
|
||||||
|
#define __ORDER_BIG_ENDIAN__ 4321
|
||||||
|
#define __ACCUM_EPSILON__ 0x1P-15K
|
||||||
|
#define __UINT32_C(c) c ## UL
|
||||||
|
#define __INTMAX_MAX__ 9223372036854775807LL
|
||||||
|
#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||||
|
#define __FLT_DENORM_MIN__ 1.4012984643248171e-45F
|
||||||
|
#define __LLFRACT_IBIT__ 0
|
||||||
|
#define __INT8_MAX__ 127
|
||||||
|
#define __UINT_FAST32_TYPE__ unsigned int
|
||||||
|
#define __CHAR32_TYPE__ long unsigned int
|
||||||
|
#define __FLT_MAX__ 3.4028234663852886e+38F
|
||||||
|
#define __USACCUM_FBIT__ 8
|
||||||
|
#define __INT32_TYPE__ long int
|
||||||
|
#define __SIZEOF_DOUBLE__ 8
|
||||||
|
#define __FLT_MIN_10_EXP__ (-37)
|
||||||
|
#define __UFRACT_EPSILON__ 0x1P-16UR
|
||||||
|
#define __INTMAX_TYPE__ long long int
|
||||||
|
#define __DEC128_MAX_EXP__ 6145
|
||||||
|
#define __ATOMIC_CONSUME 1
|
||||||
|
#define __GNUC_MINOR__ 7
|
||||||
|
#define __UINTMAX_MAX__ 18446744073709551615ULL
|
||||||
|
#define __DEC32_MANT_DIG__ 7
|
||||||
|
#define __HA_FBIT__ 7
|
||||||
|
#define __DBL_MAX_10_EXP__ 308
|
||||||
|
#define __LDBL_DENORM_MIN__ 4.9406564584124654e-324L
|
||||||
|
#define __INT16_C(c) c
|
||||||
|
#define __STDC__ 1
|
||||||
|
#define __ARM_ARCH_4T__ 1
|
||||||
|
#define __PTRDIFF_TYPE__ int
|
||||||
|
#define __LLFRACT_MIN__ (-0.5LLR-0.5LLR)
|
||||||
|
#define __ATOMIC_SEQ_CST 5
|
||||||
|
#define __DA_FBIT__ 31
|
||||||
|
#define __UINT32_TYPE__ long unsigned int
|
||||||
|
#define __UINTPTR_TYPE__ unsigned int
|
||||||
|
#define __USA_IBIT__ 16
|
||||||
|
#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD
|
||||||
|
#define __ARM_EABI__ 1
|
||||||
|
#define __DEC128_MANT_DIG__ 34
|
||||||
|
#define __LDBL_MIN_10_EXP__ (-307)
|
||||||
|
#define __SIZEOF_LONG_LONG__ 8
|
||||||
|
#define __ULACCUM_EPSILON__ 0x1P-32ULK
|
||||||
|
#define __SACCUM_IBIT__ 8
|
||||||
|
#define __GCC_ATOMIC_LLONG_LOCK_FREE 1
|
||||||
|
#define __LDBL_DIG__ 15
|
||||||
|
#define __FLT_DECIMAL_DIG__ 9
|
||||||
|
#define __UINT_FAST16_MAX__ 4294967295U
|
||||||
|
#define __GNUC_GNU_INLINE__ 1
|
||||||
|
#define __GCC_ATOMIC_SHORT_LOCK_FREE 1
|
||||||
|
#define __ULLFRACT_MAX__ 0XFFFFFFFFFFFFFFFFP-64ULLR
|
||||||
|
#define __UINT_FAST8_TYPE__ unsigned int
|
||||||
|
#define __USFRACT_EPSILON__ 0x1P-8UHR
|
||||||
|
#define __ULACCUM_FBIT__ 32
|
||||||
|
#define __QQ_IBIT__ 0
|
||||||
|
#define __ATOMIC_ACQ_REL 4
|
||||||
|
#define __ATOMIC_RELEASE 3
|
|
@ -0,0 +1,336 @@
|
||||||
|
#define __DBL_MIN_EXP__ (-1021)
|
||||||
|
#define __HQ_FBIT__ 15
|
||||||
|
#define __UINT_LEAST16_MAX__ 65535
|
||||||
|
#define __ATOMIC_ACQUIRE 2
|
||||||
|
#define __SFRACT_IBIT__ 0
|
||||||
|
#define __FLT_MIN__ 1.1754943508222875e-38F
|
||||||
|
#define __UFRACT_MAX__ 0XFFFFP-16UR
|
||||||
|
#define __UINT_LEAST8_TYPE__ unsigned char
|
||||||
|
#define __DQ_FBIT__ 63
|
||||||
|
#define __INTMAX_C(c) c ## LL
|
||||||
|
#define __ULFRACT_FBIT__ 32
|
||||||
|
#define __SACCUM_EPSILON__ 0x1P-7HK
|
||||||
|
#define __CHAR_BIT__ 8
|
||||||
|
#define __USQ_IBIT__ 0
|
||||||
|
#define __UINT8_MAX__ 255
|
||||||
|
#define __ACCUM_FBIT__ 15
|
||||||
|
#define __WINT_MAX__ 4294967295U
|
||||||
|
#define __USFRACT_FBIT__ 8
|
||||||
|
#define __ORDER_LITTLE_ENDIAN__ 1234
|
||||||
|
#define __SIZE_MAX__ 4294967295U
|
||||||
|
#define __WCHAR_MAX__ 4294967295U
|
||||||
|
#define __LACCUM_IBIT__ 32
|
||||||
|
#define __DBL_DENORM_MIN__ double(4.9406564584124654e-324L)
|
||||||
|
#define __GCC_ATOMIC_CHAR_LOCK_FREE 1
|
||||||
|
#define __FLT_EVAL_METHOD__ 0
|
||||||
|
#define __LLACCUM_MAX__ 0X7FFFFFFFFFFFFFFFP-31LLK
|
||||||
|
#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 1
|
||||||
|
#define __FRACT_FBIT__ 15
|
||||||
|
#define __UINT_FAST64_MAX__ 18446744073709551615ULL
|
||||||
|
#define __SIG_ATOMIC_TYPE__ int
|
||||||
|
#define __UACCUM_FBIT__ 16
|
||||||
|
#define __DBL_MIN_10_EXP__ (-307)
|
||||||
|
#define __FINITE_MATH_ONLY__ 0
|
||||||
|
#define __ARMEL__ 1
|
||||||
|
#define __LFRACT_IBIT__ 0
|
||||||
|
#define __GNUC_PATCHLEVEL__ 4
|
||||||
|
#define __LFRACT_MAX__ 0X7FFFFFFFP-31LR
|
||||||
|
#define __UINT_FAST8_MAX__ 4294967295U
|
||||||
|
#define __DEC64_MAX_EXP__ 385
|
||||||
|
#define __INT8_C(c) c
|
||||||
|
#define __UINT_LEAST64_MAX__ 18446744073709551615ULL
|
||||||
|
#define __SA_FBIT__ 15
|
||||||
|
#define __SHRT_MAX__ 32767
|
||||||
|
#define __LDBL_MAX__ 1.7976931348623157e+308L
|
||||||
|
#define __FRACT_MAX__ 0X7FFFP-15R
|
||||||
|
#define __UFRACT_FBIT__ 16
|
||||||
|
#define __UFRACT_MIN__ 0.0UR
|
||||||
|
#define __UINT_LEAST8_MAX__ 255
|
||||||
|
#define __GCC_ATOMIC_BOOL_LOCK_FREE 1
|
||||||
|
#define __UINTMAX_TYPE__ long long unsigned int
|
||||||
|
#define __LLFRACT_EPSILON__ 0x1P-63LLR
|
||||||
|
#define __DEC32_EPSILON__ 1E-6DF
|
||||||
|
#define __CHAR_UNSIGNED__ 1
|
||||||
|
#define __UINT32_MAX__ 4294967295UL
|
||||||
|
#define __ULFRACT_MAX__ 0XFFFFFFFFP-32ULR
|
||||||
|
#define __TA_IBIT__ 64
|
||||||
|
#define __LDBL_MAX_EXP__ 1024
|
||||||
|
#define __WINT_MIN__ 0U
|
||||||
|
#define __ULLFRACT_MIN__ 0.0ULLR
|
||||||
|
#define __SCHAR_MAX__ 127
|
||||||
|
#define __WCHAR_MIN__ 0U
|
||||||
|
#define __INT64_C(c) c ## LL
|
||||||
|
#define __DBL_DIG__ 15
|
||||||
|
#define __GCC_ATOMIC_POINTER_LOCK_FREE 1
|
||||||
|
#define __LLACCUM_MIN__ (-0X1P31LLK-0X1P31LLK)
|
||||||
|
#define __SIZEOF_INT__ 4
|
||||||
|
#define __SIZEOF_POINTER__ 4
|
||||||
|
#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 1
|
||||||
|
#define __USACCUM_IBIT__ 8
|
||||||
|
#define __USER_LABEL_PREFIX__
|
||||||
|
#define __STDC_HOSTED__ 1
|
||||||
|
#define __LDBL_HAS_INFINITY__ 1
|
||||||
|
#define __LFRACT_MIN__ (-0.5LR-0.5LR)
|
||||||
|
#define __HA_IBIT__ 8
|
||||||
|
#define __TQ_IBIT__ 0
|
||||||
|
#define __FLT_EPSILON__ 1.1920928955078125e-7F
|
||||||
|
#define __APCS_32__ 1
|
||||||
|
#define __GXX_WEAK__ 1
|
||||||
|
#define __USFRACT_IBIT__ 0
|
||||||
|
#define __LDBL_MIN__ 2.2250738585072014e-308L
|
||||||
|
#define __FRACT_MIN__ (-0.5R-0.5R)
|
||||||
|
#define __DEC32_MAX__ 9.999999E96DF
|
||||||
|
#define __DA_IBIT__ 32
|
||||||
|
#define __INT32_MAX__ 2147483647L
|
||||||
|
#define __UQQ_FBIT__ 8
|
||||||
|
#define __SIZEOF_LONG__ 4
|
||||||
|
#define __UACCUM_MAX__ 0XFFFFFFFFP-16UK
|
||||||
|
#define __UINT16_C(c) c
|
||||||
|
#define __DECIMAL_DIG__ 17
|
||||||
|
#define __LFRACT_EPSILON__ 0x1P-31LR
|
||||||
|
#define __ULFRACT_MIN__ 0.0ULR
|
||||||
|
#define __LDBL_HAS_QUIET_NAN__ 1
|
||||||
|
#define __ULACCUM_IBIT__ 32
|
||||||
|
#define __UACCUM_EPSILON__ 0x1P-16UK
|
||||||
|
#define __GNUC__ 4
|
||||||
|
#define __ULLACCUM_MAX__ 0XFFFFFFFFFFFFFFFFP-32ULLK
|
||||||
|
#define __HQ_IBIT__ 0
|
||||||
|
#define __FLT_HAS_DENORM__ 1
|
||||||
|
#define __SIZEOF_LONG_DOUBLE__ 8
|
||||||
|
#define __BIGGEST_ALIGNMENT__ 8
|
||||||
|
#define __DQ_IBIT__ 0
|
||||||
|
#define __DBL_MAX__ double(1.7976931348623157e+308L)
|
||||||
|
#define __ULFRACT_IBIT__ 0
|
||||||
|
#define __INT_FAST32_MAX__ 2147483647
|
||||||
|
#define __DBL_HAS_INFINITY__ 1
|
||||||
|
#define __INT64_MAX__ 9223372036854775807LL
|
||||||
|
#define __ACCUM_IBIT__ 16
|
||||||
|
#define __DEC32_MIN_EXP__ (-94)
|
||||||
|
#define __THUMB_INTERWORK__ 1
|
||||||
|
#define __LACCUM_MAX__ 0X7FFFFFFFFFFFFFFFP-31LK
|
||||||
|
#define __INT_FAST16_TYPE__ int
|
||||||
|
#define __LDBL_HAS_DENORM__ 1
|
||||||
|
#define __cplusplus 199711L
|
||||||
|
#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL
|
||||||
|
#define __INT_LEAST32_MAX__ 2147483647L
|
||||||
|
#define __ARM_PCS 1
|
||||||
|
#define __DEC32_MIN__ 1E-95DF
|
||||||
|
#define __ACCUM_MAX__ 0X7FFFFFFFP-15K
|
||||||
|
#define __DEPRECATED 1
|
||||||
|
#define __DBL_MAX_EXP__ 1024
|
||||||
|
#define __USACCUM_EPSILON__ 0x1P-8UHK
|
||||||
|
#define __DEC128_EPSILON__ 1E-33DL
|
||||||
|
#define __SFRACT_MAX__ 0X7FP-7HR
|
||||||
|
#define __FRACT_IBIT__ 0
|
||||||
|
#define __PTRDIFF_MAX__ 2147483647
|
||||||
|
#define __UACCUM_MIN__ 0.0UK
|
||||||
|
#define __UACCUM_IBIT__ 16
|
||||||
|
#define __GNUG__ 4
|
||||||
|
#define __LONG_LONG_MAX__ 9223372036854775807LL
|
||||||
|
#define __SIZEOF_SIZE_T__ 4
|
||||||
|
#define __ULACCUM_MAX__ 0XFFFFFFFFFFFFFFFFP-32ULK
|
||||||
|
#define __SIZEOF_WINT_T__ 4
|
||||||
|
#define __SA_IBIT__ 16
|
||||||
|
#define __ULLACCUM_MIN__ 0.0ULLK
|
||||||
|
#define __GXX_ABI_VERSION 1002
|
||||||
|
#define __UTA_FBIT__ 64
|
||||||
|
#define __SOFTFP__ 1
|
||||||
|
#define __FLT_MIN_EXP__ (-125)
|
||||||
|
#define __USFRACT_MAX__ 0XFFP-8UHR
|
||||||
|
#define __UFRACT_IBIT__ 0
|
||||||
|
#define __INT_FAST64_TYPE__ long long int
|
||||||
|
#define __DBL_MIN__ double(2.2250738585072014e-308L)
|
||||||
|
#define __FLT_MIN_10_EXP__ (-37)
|
||||||
|
#define __LACCUM_MIN__ (-0X1P31LK-0X1P31LK)
|
||||||
|
#define __ULLACCUM_FBIT__ 32
|
||||||
|
#define __GXX_TYPEINFO_EQUALITY_INLINE 0
|
||||||
|
#define __ULLFRACT_EPSILON__ 0x1P-64ULLR
|
||||||
|
#define __USES_INITFINI__ 1
|
||||||
|
#define __DEC128_MIN__ 1E-6143DL
|
||||||
|
#define __REGISTER_PREFIX__
|
||||||
|
#define __UINT16_MAX__ 65535
|
||||||
|
#define __DBL_HAS_DENORM__ 1
|
||||||
|
#define __ACCUM_MIN__ (-0X1P15K-0X1P15K)
|
||||||
|
#define __SQ_IBIT__ 0
|
||||||
|
#define __UINT8_TYPE__ unsigned char
|
||||||
|
#define __UHA_FBIT__ 8
|
||||||
|
#define __NO_INLINE__ 1
|
||||||
|
#define __SFRACT_MIN__ (-0.5HR-0.5HR)
|
||||||
|
#define __UTQ_FBIT__ 128
|
||||||
|
#define __FLT_MANT_DIG__ 24
|
||||||
|
#define __VERSION__ "4.7.4 20130913 (release) [ARM/embedded-4_7-branch revision 202601]"
|
||||||
|
#define __UINT64_C(c) c ## ULL
|
||||||
|
#define __ULLFRACT_FBIT__ 64
|
||||||
|
#define __FRACT_EPSILON__ 0x1P-15R
|
||||||
|
#define __ULACCUM_MIN__ 0.0ULK
|
||||||
|
#define __UDA_FBIT__ 32
|
||||||
|
#define __LLACCUM_EPSILON__ 0x1P-31LLK
|
||||||
|
#define __GCC_ATOMIC_INT_LOCK_FREE 1
|
||||||
|
#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||||
|
#define __USFRACT_MIN__ 0.0UHR
|
||||||
|
#define __ULLACCUM_IBIT__ 32
|
||||||
|
#define __UQQ_IBIT__ 0
|
||||||
|
#define __INT32_C(c) c ## L
|
||||||
|
#define __DEC64_EPSILON__ 1E-15DD
|
||||||
|
#define __ORDER_PDP_ENDIAN__ 3412
|
||||||
|
#define __DEC128_MIN_EXP__ (-6142)
|
||||||
|
#define __UHQ_FBIT__ 16
|
||||||
|
#define __LLACCUM_FBIT__ 31
|
||||||
|
#define __INT_FAST32_TYPE__ int
|
||||||
|
#define __UINT_LEAST16_TYPE__ short unsigned int
|
||||||
|
#define __INT16_MAX__ 32767
|
||||||
|
#define __SIZE_TYPE__ unsigned int
|
||||||
|
#define __UINT64_MAX__ 18446744073709551615ULL
|
||||||
|
#define __UDQ_FBIT__ 64
|
||||||
|
#define __INT8_TYPE__ signed char
|
||||||
|
#define __ELF__ 1
|
||||||
|
#define __ULFRACT_EPSILON__ 0x1P-32ULR
|
||||||
|
#define __LLFRACT_FBIT__ 63
|
||||||
|
#define __FLT_RADIX__ 2
|
||||||
|
#define __INT_LEAST16_TYPE__ short int
|
||||||
|
#define __LDBL_EPSILON__ 2.2204460492503131e-16L
|
||||||
|
#define __UINTMAX_C(c) c ## ULL
|
||||||
|
#define __SACCUM_MAX__ 0X7FFFP-7HK
|
||||||
|
#define __SIG_ATOMIC_MAX__ 2147483647
|
||||||
|
#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 1
|
||||||
|
#define __VFP_FP__ 1
|
||||||
|
#define __SIZEOF_PTRDIFF_T__ 4
|
||||||
|
#define __LACCUM_EPSILON__ 0x1P-31LK
|
||||||
|
#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF
|
||||||
|
#define __INT_FAST16_MAX__ 2147483647
|
||||||
|
#define __UINT_FAST32_MAX__ 4294967295U
|
||||||
|
#define __UINT_LEAST64_TYPE__ long long unsigned int
|
||||||
|
#define __USACCUM_MAX__ 0XFFFFP-8UHK
|
||||||
|
#define __SFRACT_EPSILON__ 0x1P-7HR
|
||||||
|
#define __FLT_HAS_QUIET_NAN__ 1
|
||||||
|
#define __FLT_MAX_10_EXP__ 38
|
||||||
|
#define __LONG_MAX__ 2147483647L
|
||||||
|
#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL
|
||||||
|
#define __FLT_HAS_INFINITY__ 1
|
||||||
|
#define __USA_FBIT__ 16
|
||||||
|
#define __UINT_FAST16_TYPE__ unsigned int
|
||||||
|
#define __DEC64_MAX__ 9.999999999999999E384DD
|
||||||
|
#define __CHAR16_TYPE__ short unsigned int
|
||||||
|
#define __PRAGMA_REDEFINE_EXTNAME 1
|
||||||
|
#define __INT_LEAST16_MAX__ 32767
|
||||||
|
#define __DEC64_MANT_DIG__ 16
|
||||||
|
#define __UINT_LEAST32_MAX__ 4294967295UL
|
||||||
|
#define __SACCUM_FBIT__ 7
|
||||||
|
#define __GCC_ATOMIC_LONG_LOCK_FREE 1
|
||||||
|
#define __INT_LEAST64_TYPE__ long long int
|
||||||
|
#define __INT16_TYPE__ short int
|
||||||
|
#define __INT_LEAST8_TYPE__ signed char
|
||||||
|
#define __SQ_FBIT__ 31
|
||||||
|
#define __DEC32_MAX_EXP__ 97
|
||||||
|
#define __INT_FAST8_MAX__ 2147483647
|
||||||
|
#define __INTPTR_MAX__ 2147483647
|
||||||
|
#define __QQ_FBIT__ 7
|
||||||
|
#define __UTA_IBIT__ 64
|
||||||
|
#define __EXCEPTIONS 1
|
||||||
|
#define __LDBL_MANT_DIG__ 53
|
||||||
|
#define __SFRACT_FBIT__ 7
|
||||||
|
#define __SACCUM_MIN__ (-0X1P7HK-0X1P7HK)
|
||||||
|
#define __DBL_HAS_QUIET_NAN__ 1
|
||||||
|
#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1)
|
||||||
|
#define __INTPTR_TYPE__ int
|
||||||
|
#define __UINT16_TYPE__ short unsigned int
|
||||||
|
#define __WCHAR_TYPE__ unsigned int
|
||||||
|
#define __SIZEOF_FLOAT__ 4
|
||||||
|
#define __USQ_FBIT__ 32
|
||||||
|
#define __UINTPTR_MAX__ 4294967295U
|
||||||
|
#define __DEC64_MIN_EXP__ (-382)
|
||||||
|
#define __INT_FAST64_MAX__ 9223372036854775807LL
|
||||||
|
#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1
|
||||||
|
#define __FLT_DIG__ 6
|
||||||
|
#define __UINT_FAST64_TYPE__ long long unsigned int
|
||||||
|
#define __INT_MAX__ 2147483647
|
||||||
|
#define __LACCUM_FBIT__ 31
|
||||||
|
#define __USACCUM_MIN__ 0.0UHK
|
||||||
|
#define __UHA_IBIT__ 8
|
||||||
|
#define __INT64_TYPE__ long long int
|
||||||
|
#define __FLT_MAX_EXP__ 128
|
||||||
|
#define __UTQ_IBIT__ 0
|
||||||
|
#define __DBL_MANT_DIG__ 53
|
||||||
|
#define __INT_LEAST64_MAX__ 9223372036854775807LL
|
||||||
|
#define __DEC64_MIN__ 1E-383DD
|
||||||
|
#define __WINT_TYPE__ unsigned int
|
||||||
|
#define __UINT_LEAST32_TYPE__ long unsigned int
|
||||||
|
#define __SIZEOF_SHORT__ 2
|
||||||
|
#define __ULLFRACT_IBIT__ 0
|
||||||
|
#define __LDBL_MIN_EXP__ (-1021)
|
||||||
|
#define __arm__ 1
|
||||||
|
#define __UDA_IBIT__ 32
|
||||||
|
#define __INT_LEAST8_MAX__ 127
|
||||||
|
#define __LFRACT_FBIT__ 31
|
||||||
|
#define __WCHAR_UNSIGNED__ 1
|
||||||
|
#define __LDBL_MAX_10_EXP__ 308
|
||||||
|
#define __ATOMIC_RELAXED 0
|
||||||
|
#define __DBL_EPSILON__ double(2.2204460492503131e-16L)
|
||||||
|
#define __UINT8_C(c) c
|
||||||
|
#define __INT_LEAST32_TYPE__ long int
|
||||||
|
#define __SIZEOF_WCHAR_T__ 4
|
||||||
|
#define __UINT64_TYPE__ long long unsigned int
|
||||||
|
#define __LLFRACT_MAX__ 0X7FFFFFFFFFFFFFFFP-63LLR
|
||||||
|
#define __TQ_FBIT__ 127
|
||||||
|
#define __INT_FAST8_TYPE__ int
|
||||||
|
#define __ULLACCUM_EPSILON__ 0x1P-32ULLK
|
||||||
|
#define __UHQ_IBIT__ 0
|
||||||
|
#define __LLACCUM_IBIT__ 32
|
||||||
|
#define __DBL_DECIMAL_DIG__ 17
|
||||||
|
#define __DEC_EVAL_METHOD__ 2
|
||||||
|
#define __TA_FBIT__ 63
|
||||||
|
#define __UDQ_IBIT__ 0
|
||||||
|
#define __ORDER_BIG_ENDIAN__ 4321
|
||||||
|
#define __ACCUM_EPSILON__ 0x1P-15K
|
||||||
|
#define __UINT32_C(c) c ## UL
|
||||||
|
#define __INTMAX_MAX__ 9223372036854775807LL
|
||||||
|
#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__
|
||||||
|
#define __FLT_DENORM_MIN__ 1.4012984643248171e-45F
|
||||||
|
#define __LLFRACT_IBIT__ 0
|
||||||
|
#define __INT8_MAX__ 127
|
||||||
|
#define __UINT_FAST32_TYPE__ unsigned int
|
||||||
|
#define __CHAR32_TYPE__ long unsigned int
|
||||||
|
#define __FLT_MAX__ 3.4028234663852886e+38F
|
||||||
|
#define __USACCUM_FBIT__ 8
|
||||||
|
#define __INT32_TYPE__ long int
|
||||||
|
#define __SIZEOF_DOUBLE__ 8
|
||||||
|
#define __UFRACT_EPSILON__ 0x1P-16UR
|
||||||
|
#define __INTMAX_TYPE__ long long int
|
||||||
|
#define __DEC128_MAX_EXP__ 6145
|
||||||
|
#define __ATOMIC_CONSUME 1
|
||||||
|
#define __GNUC_MINOR__ 7
|
||||||
|
#define __UINTMAX_MAX__ 18446744073709551615ULL
|
||||||
|
#define __DEC32_MANT_DIG__ 7
|
||||||
|
#define __HA_FBIT__ 7
|
||||||
|
#define __DBL_MAX_10_EXP__ 308
|
||||||
|
#define __LDBL_DENORM_MIN__ 4.9406564584124654e-324L
|
||||||
|
#define __INT16_C(c) c
|
||||||
|
#define __STDC__ 1
|
||||||
|
#define __ARM_ARCH_4T__ 1
|
||||||
|
#define __PTRDIFF_TYPE__ int
|
||||||
|
#define __LLFRACT_MIN__ (-0.5LLR-0.5LLR)
|
||||||
|
#define __ATOMIC_SEQ_CST 5
|
||||||
|
#define __DA_FBIT__ 31
|
||||||
|
#define __UINT32_TYPE__ long unsigned int
|
||||||
|
#define __UINTPTR_TYPE__ unsigned int
|
||||||
|
#define __USA_IBIT__ 16
|
||||||
|
#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD
|
||||||
|
#define __ARM_EABI__ 1
|
||||||
|
#define __DEC128_MANT_DIG__ 34
|
||||||
|
#define __LDBL_MIN_10_EXP__ (-307)
|
||||||
|
#define __SIZEOF_LONG_LONG__ 8
|
||||||
|
#define __ULACCUM_EPSILON__ 0x1P-32ULK
|
||||||
|
#define __SACCUM_IBIT__ 8
|
||||||
|
#define __GCC_ATOMIC_LLONG_LOCK_FREE 1
|
||||||
|
#define __LDBL_DIG__ 15
|
||||||
|
#define __FLT_DECIMAL_DIG__ 9
|
||||||
|
#define __UINT_FAST16_MAX__ 4294967295U
|
||||||
|
#define __GNUC_GNU_INLINE__ 1
|
||||||
|
#define __GCC_ATOMIC_SHORT_LOCK_FREE 1
|
||||||
|
#define __ULLFRACT_MAX__ 0XFFFFFFFFFFFFFFFFP-64ULLR
|
||||||
|
#define __UINT_FAST8_TYPE__ unsigned int
|
||||||
|
#define __USFRACT_EPSILON__ 0x1P-8UHR
|
||||||
|
#define __ULACCUM_FBIT__ 32
|
||||||
|
#define __QQ_IBIT__ 0
|
||||||
|
#define __ATOMIC_ACQ_REL 4
|
||||||
|
#define __ATOMIC_RELEASE 3
|
|
@ -0,0 +1 @@
|
||||||
|
-ss2 -si4 -sl4 -sll8 -sf4 -sd8 -sld8 -sp4 -sw2
|
|
@ -0,0 +1,112 @@
|
||||||
|
/* MISRA checks are not performed in header files marked as libraries or
|
||||||
|
vendor-provided files or belonging to other subsystems.*/
|
||||||
|
-e686 /* Silencing warning on -elib(*) */
|
||||||
|
-elib(*) /* No checks on library files. */
|
||||||
|
+libclass(angle,ansi)
|
||||||
|
+libh(core_cm4.h)
|
||||||
|
+libh(stm32*.h)
|
||||||
|
+libh(*_lld.h)
|
||||||
|
|
||||||
|
/* Reinforcing type checking for some critical types even if not required by
|
||||||
|
MISRA.*/
|
||||||
|
-strong(AJX, systime_t)
|
||||||
|
-strong(AJX, rtcnt_t)
|
||||||
|
-strong(AJX, rttime_t)
|
||||||
|
-strong(AJX, syssts_t)
|
||||||
|
-strong(AJX, msg_t)
|
||||||
|
-strong(AJX, cnt_t)
|
||||||
|
-strong(AJX, ucnt_t)
|
||||||
|
-strong(AJX, tstate_t)
|
||||||
|
-strong(AJX, eventmask_t)
|
||||||
|
|
||||||
|
/* Permitting anonymous unions.*/
|
||||||
|
+fan
|
||||||
|
|
||||||
|
/* Silencing common non-MISRA info generated by PCLint in -w3 mode. All of
|
||||||
|
them have been controlled. Other infos have been fixed in the code.
|
||||||
|
Remove temporarily the following -e in order to perform extra code quality
|
||||||
|
checks.*/
|
||||||
|
-e526 -e537 -e552
|
||||||
|
-e611 -e613
|
||||||
|
-e714 -e716 -e717 -e749 -e750 -e754 -e757 -e758 -e759 -e766 -e768 -e769 -e773 -e778 -e793
|
||||||
|
-e826 -e830 -e835 -e845
|
||||||
|
|
||||||
|
/* Removing *advisory* directives and rules that would negatively impact
|
||||||
|
code readability or not avoidable.*/
|
||||||
|
-e970 /* Dir-4.6 */
|
||||||
|
-e9045 /* Dir-4.8 */
|
||||||
|
-e9026 /* Dir-4.9 */
|
||||||
|
-e756 /* Rule-2.3 */
|
||||||
|
-e9058 /* Rule-2.4 */
|
||||||
|
-e755 /* Rule-2.5 */
|
||||||
|
-e9003 /* Rule-8.9 */
|
||||||
|
-e9067 /* Rule-8.11 */
|
||||||
|
-e818 /* Rule 8.13 */
|
||||||
|
-e9078 /* Rule-11.4 */
|
||||||
|
-e9079 /* Rule-11.5 */
|
||||||
|
-e9049 /* Rule-13.3 */
|
||||||
|
-e9084 /* Rule-13.4 */
|
||||||
|
-e801 /* Rule-15.1 */
|
||||||
|
-e9011 /* Rule-15.4 */
|
||||||
|
-e904 /* Rule-15.5 */
|
||||||
|
-e9044 /* Rule-17.8 */
|
||||||
|
-e9016 /* Rule-18.4 */
|
||||||
|
-e844 -e954 /* Rule-18.13 */
|
||||||
|
-e9018 /* Rule-19.2 */
|
||||||
|
-e9024 /* Rule-20.10 */
|
||||||
|
|
||||||
|
/* Waiver Directive 2.1, Rule 1.1, Rule 1.2, assembler is allowed in some
|
||||||
|
modules.*/
|
||||||
|
-e950
|
||||||
|
|
||||||
|
/* Waiver Directive 4.10, PCLint is confused by the guard used in the CMSIS
|
||||||
|
header files, the guard is present, suppressing the noise.*/
|
||||||
|
-e451
|
||||||
|
|
||||||
|
/* Waiver Rule 2.2, PCLint marks as pure functions that contain just asm
|
||||||
|
code, this does not mean that those functions do nothing.*/
|
||||||
|
-e522
|
||||||
|
|
||||||
|
/* Waiver Rule 3.1, the sequence "//" is mandated by standard license
|
||||||
|
headers included on top of all source files. The sequence is part of the
|
||||||
|
license URL and cannot be removed.*/
|
||||||
|
-e9059
|
||||||
|
|
||||||
|
/* Waiver Rule 8.7, the static analyser has no visibility of functions called
|
||||||
|
from asm modules.*/
|
||||||
|
-e765
|
||||||
|
|
||||||
|
/* Waiver Rule 11.1, casts of function pointers are required by system
|
||||||
|
design.*/
|
||||||
|
-e9074
|
||||||
|
|
||||||
|
/* Waiver Rule 11.3, casts among different types are required by system
|
||||||
|
design.*/
|
||||||
|
-e740 /* Wrongly marked as 1.3 in PCLint 9.00L.*/
|
||||||
|
-e9087
|
||||||
|
|
||||||
|
/* Waiver Rule 11.6, cast from integer to pointer is very commonly used
|
||||||
|
when accessing peripherals where the numeric address of the registers
|
||||||
|
block is cast to a structure pointer.*/
|
||||||
|
-e923
|
||||||
|
|
||||||
|
/* Waiver Rule 16.1, missing break into case. It is a common occurrence and
|
||||||
|
thoroughly checked.*/
|
||||||
|
/* Waiver Rule 16.3, missing break into case. It is a common occurrence and
|
||||||
|
thoroughly checked.*/
|
||||||
|
-e9090
|
||||||
|
-e9077
|
||||||
|
-e9042
|
||||||
|
-e616
|
||||||
|
-e825
|
||||||
|
|
||||||
|
/* Waiver Rule 18.2, pointers arithmetic is required by system design and
|
||||||
|
deemed safe.*/
|
||||||
|
/* Waiver Rule 18.3, comparisons among pointers is required by system design
|
||||||
|
and deemed safe.*/
|
||||||
|
-e946
|
||||||
|
-e947
|
||||||
|
|
||||||
|
/* Waiver Rule 21.1, this is an operating system, its identifiers are
|
||||||
|
equivalent in importance to compiler symbols.*/
|
||||||
|
-e9071
|
Loading…
Reference in New Issue