Skip to content
Snippets Groups Projects
Commit 1b66ff3e authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'fix-gcc-11.1.0-comparision' into 'master'

[Debug] maybe-uninitialized should be ignored for gcc >= 11.1.0

See merge request i4/manycore/emper!204
parents 25832819 59534c07
No related branches found
No related tags found
1 merge request!204[Debug] maybe-uninitialized should be ignored for gcc >= 11.1.0
Pipeline #62707 passed
......@@ -59,7 +59,7 @@
// test for GCC > 11.1.0
#if __GNUC__ > 11 || \
(__GNUC__ == 11 && (__GNUC_MINOR__ > 1 || (__GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ > 0)))
(__GNUC__ == 11 && (__GNUC_MINOR__ > 1 || (__GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ >= 0)))
#define IGNORE_MAYBE_UNINITIALIZED \
_Pragma("GCC diagnostic push") _Pragma("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
#else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment