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 784713e commit 93fef2eCopy full SHA for 93fef2e
src/rt/rust_task.cpp
@@ -18,11 +18,11 @@
18
// The amount of extra space at the end of each stack segment, available
19
// to the rt, compiler and dynamic linker for running small functions
20
// FIXME: We want this to be 128 but need to slim the red zone calls down
21
-#define RZ_LINUX_32 1024*20
22
-#define RZ_LINUX_64 1024*20
23
-#define RZ_MAC_32 1024*20
24
-#define RZ_MAC_64 1024*20
25
-#define RZ_WIN_32 1024*20
+#define RZ_LINUX_32 (1024*20)
+#define RZ_LINUX_64 (1024*20)
+#define RZ_MAC_32 (1024*20)
+#define RZ_MAC_64 (1024*20)
+#define RZ_WIN_32 (1024*20)
26
27
#ifdef __linux__
28
#ifdef __i386__
0 commit comments