Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2010-07-26 00:19:54 +0400
committerRaja R Harinath <harinath@hurrynot.org>2010-07-26 00:50:13 +0400
commitcd51491631380ed56723fdfc66945213f9864b5a (patch)
tree05ebbd8cd16e55aae7d81003a3ba0c803eab8e1f /libgc/win32_threads.c
parent5c94b81517e934060ca88474eaefb2b516be734a (diff)
Fix a few cases of mixed line-endings
This is a scripted conversion of mixed line-ending files to LF-only or CRLF-only based on which patch is smaller. I used a threshold of upto a quarter of the lines to determine whether to keep the patch or not.
Diffstat (limited to 'libgc/win32_threads.c')
-rw-r--r--libgc/win32_threads.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libgc/win32_threads.c b/libgc/win32_threads.c
index a2cd0fda43e..9662eb186ce 100644
--- a/libgc/win32_threads.c
+++ b/libgc/win32_threads.c
@@ -385,10 +385,10 @@ void GC_push_all_stacks()
# define PUSH4(r1,r2,r3,r4) PUSH2(r1,r2), PUSH2(r3,r4)
# if defined(I386)
PUSH4(Edi,Esi,Ebx,Edx), PUSH2(Ecx,Eax), PUSH1(Ebp);
- sp = (ptr_t)context.Esp;
-# elif defined(X86_64)
- PUSH4(Rax,Rcx,Rdx,Rbx); PUSH2(Rbp, Rsi); PUSH1(Rdi);
- PUSH4(R8, R9, R10, R11); PUSH4(R12, R13, R14, R15);
+ sp = (ptr_t)context.Esp;
+# elif defined(X86_64)
+ PUSH4(Rax,Rcx,Rdx,Rbx); PUSH2(Rbp, Rsi); PUSH1(Rdi);
+ PUSH4(R8, R9, R10, R11); PUSH4(R12, R13, R14, R15);
sp = (ptr_t)context.Rsp;
# elif defined(ARM32)
PUSH4(R0,R1,R2,R3),PUSH4(R4,R5,R6,R7),PUSH4(R8,R9,R10,R11),PUSH1(R12);