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() {...@@ -98,7 +98,7 @@ export nakedcc fn __aeabi_uidivmod() {
98 @setGlobalLinkage(__aeabi_uidivmod, builtin.GlobalLinkage.Internal);98 @setGlobalLinkage(__aeabi_uidivmod, builtin.GlobalLinkage.Internal);
99}99}
100100
101export nakedcc fn __chkstk() align 4 {101export nakedcc fn __chkstk() align(4) {
102 @setDebugSafety(this, false);102 @setDebugSafety(this, false);
103103
104 if (comptime builtin.os == builtin.Os.windows) {104 if (comptime builtin.os == builtin.Os.windows) {
...@@ -132,7 +132,7 @@ export nakedcc fn __chkstk() align 4 {...@@ -132,7 +132,7 @@ export nakedcc fn __chkstk() align 4 {
132 @setGlobalLinkage(__chkstk, builtin.GlobalLinkage.Internal);132 @setGlobalLinkage(__chkstk, builtin.GlobalLinkage.Internal);
133}133}
134134
135export nakedcc fn ___chkstk_ms() align 4 {135export nakedcc fn ___chkstk_ms() align(4) {
136 @setDebugSafety(this, false);136 @setDebugSafety(this, false);
137137
138 if (comptime builtin.os == builtin.Os.windows) {138 if (comptime builtin.os == builtin.Os.windows) {
...@@ -160,7 +160,7 @@ export nakedcc fn ___chkstk_ms() align 4 {...@@ -160,7 +160,7 @@ export nakedcc fn ___chkstk_ms() align 4 {
160 }160 }
161 }161 }
162162
163 @setGlobalLinkage(__chkstk, builtin.GlobalLinkage.Internal);163 @setGlobalLinkage(___chkstk_ms, builtin.GlobalLinkage.Internal);
164}164}
165165
166export fn __udivmodsi4(a: u32, b: u32, rem: &u32) -> u32 {166export fn __udivmodsi4(a: u32, b: u32, rem: &u32) -> u32 {