summaryrefslogtreecommitdiffstats
path: root/platforms/avr
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2023-04-05 14:59:09 +1000
committerGitHub <noreply@github.com>2023-04-05 14:59:09 +1000
commit06c5c028046adc0a5501f6ac51953640e2015020 (patch)
tree9c5b9ebb54a2b071be29eaec22551c4f6924b8c4 /platforms/avr
parentf1dbffe367ca3b2affbcdc5f7e5027f32d2e655d (diff)
Disable specific warnings to mitigate compilation problems with `KEEP_INTERMEDIATES=yes`. (#20339)
Diffstat (limited to 'platforms/avr')
-rw-r--r--platforms/avr/_wait.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/platforms/avr/_wait.h b/platforms/avr/_wait.h
index c1a598a428..39cbf618d2 100644
--- a/platforms/avr/_wait.h
+++ b/platforms/avr/_wait.h
@@ -15,7 +15,11 @@
*/
#pragma once
+// Need to disable GCC's "maybe-uninitialized" warning for this file, as it causes issues when running `KEEP_INTERMEDIATES=yes`.
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#include <util/delay.h>
+#pragma GCC diagnostic pop
// http://ww1.microchip.com/downloads/en/devicedoc/atmel-0856-avr-instruction-set-manual.pdf
// page 22: Table 4-2. Arithmetic and Logic Instructions