authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-09-30 13:40:55-04:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-09-30 13:40:55-04:00
logb7a4f16cc4f7c6bddc312798052a7738db8a5fc2
tree0656532b4e1ce2003ab40cd544e2af53d5f90919
parent53aa72b58a72b5d557488ea6a4ea7e0827445fcd

fix previous commit


1 files changed, 3 insertions(+), 3 deletions(-)

std/special/compiler_rt/index.zig+3-3
......@@ -98,7 +98,7 @@ export nakedcc fn __aeabi_uidivmod() {
9898 @setGlobalLinkage(__aeabi_uidivmod, builtin.GlobalLinkage.Internal);
9999}
100100
101export nakedcc fn __chkstk() align 4 {
101export nakedcc fn __chkstk() align(4) {
102102 @setDebugSafety(this, false);
103103
104104 if (comptime builtin.os == builtin.Os.windows) {
......@@ -132,7 +132,7 @@ export nakedcc fn __chkstk() align 4 {
132132 @setGlobalLinkage(__chkstk, builtin.GlobalLinkage.Internal);
133133}
134134
135export nakedcc fn ___chkstk_ms() align 4 {
135export nakedcc fn ___chkstk_ms() align(4) {
136136 @setDebugSafety(this, false);
137137
138138 if (comptime builtin.os == builtin.Os.windows) {
......@@ -160,7 +160,7 @@ export nakedcc fn ___chkstk_ms() align 4 {
160160 }
161161 }
162162
163 @setGlobalLinkage(__chkstk, builtin.GlobalLinkage.Internal);
163 @setGlobalLinkage(___chkstk_ms, builtin.GlobalLinkage.Internal);
164164}
165165
166166export fn __udivmodsi4(a: u32, b: u32, rem: &u32) -> u32 {