JavaScript is not currently enabled, but is required for full CodeSonar manual search and browse functionality.
If you are viewing this file in your hub's Web GUI, enable JavaScript in your browser: you will also need it for GUI functionality.
If you opened this file directly from disk, your browser may be directly suppressing JavaScript functionality: certain browsers perform this suppression on local files (but not files delivered by web servers) for security reasons.
| CodeSonar® 9.2p0 | CONFIDENTIAL | CodeSecure Inc |
A use of one of the following GNU extensions.
| Class Name | GNU Extension | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Significance | style | ||||||||||||||||||
| Mnemonic | LANG.EXT.GNU | ||||||||||||||||||
| Categories |
|
||||||||||||||||||
| Availability | Available for C and C++. |
||||||||||||||||||
| Enabling | Checks for this warning class are disabled by default,
and require the unnormalized
C ASTs for the project. To enable them, add the following
WARNING_FILTER rule and RETAIN_UNNORMALIZED_C_AST specification to the project configuration file.
RETAIN_UNNORMALIZED_C_AST = Yes WARNING_FILTER += allow class="GNU Extension" |
#include <stddef.h> typedef int myvector __attribute__ ((vector_size (16))); /* 'GNU Extension' warning issued here * (vector type) */ struct S { int a; int b; }; double EXT_GNU(int a, int b, _Complex double comp){ int i=3; int j,k; double d; _Complex double c; void * l; switch (a){ case 0 ... 3: break; /* 'GNU Extension' warning issued here * (switch case range) */ /* ... */}; d = __real comp; /* 'GNU Extension' warning issued here * (and also for __real__, __imag, __imag__, and ~) */ __extension__ i++; /* 'GNU Extension' warning issued here * (__extension__ keyword) */ i = ({j=i; while (j<100) j+=(int)d; j; }); /* 'GNU Extension' warning issued here * (statement expression) */ l = &&label1; /* 'GNU Extension' warning issued here * (taking label address) */ goto *l; /* 'GNU Extension' warning issued here * (computed goto) */ label1 : i += a; label2 : i += b; i += __builtin_offsetof(struct S, b); /* 'GNU Extension' warning issued here * (__builtin_offsetof()) */ __builtin_types_compatible_p(int, short); /* 'GNU Extension' warning issued here * (__builtin_types_compatible_p()) */ asm ("mov %1, %0" : "=r" (i) : "r" (j)); /* 'GNU Extension' warning issued here * (extended asm) */ return i; }
The following configuration file parameters affect checks for this warning class.
To report problems with this documentation, please visit https://support.codesecure.com/.