We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5912699 commit 950a68fCopy full SHA for 950a68f
src/host/pico_platform/include/pico/platform.h
@@ -60,6 +60,12 @@ extern void tight_loop_contents();
60
#define __noinline __attribute__((noinline))
61
#endif
62
63
+#ifndef __force_inline
64
+// don't think it is critical to inline in host mode, and this is simpler than picking the
65
+// correct attribute incantation for always_inline on different compiler versions
66
+#define __force_inline inline
67
+#endif
68
+
69
#ifndef __aligned
70
#define __aligned(x) __attribute__((aligned(x)))
71
0 commit comments