]> git.lizzy.rs Git - rust.git/commitdiff
rt: Parenthesize the red zone macros
authorBrian Anderson <banderson@mozilla.com>
Tue, 20 Dec 2011 19:57:22 +0000 (11:57 -0800)
committerBrian Anderson <banderson@mozilla.com>
Tue, 20 Dec 2011 19:57:22 +0000 (11:57 -0800)
src/rt/rust_task.cpp

index 125a2900ca02b8c1e9e035cc7fd725a4734bbc45..4604b89b95c28a586dea1c61b9977804f17c7e28 100644 (file)
 // The amount of extra space at the end of each stack segment, available
 // to the rt, compiler and dynamic linker for running small functions
 // FIXME: We want this to be 128 but need to slim the red zone calls down
-#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
+#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)
 
 #ifdef __linux__
 #ifdef __i386__