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

github.com/Unity-Technologies/bdwgc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2011-09-30 17:27:35 +0400
committerIvan Maidanski <ivmai@mail.ru>2011-09-30 17:27:35 +0400
commit8220ca8c2c44b1e8fcb8c2682ba338c6f4e34d2f (patch)
tree0ee19a29a360407ae5a3be46fdc1ef6545061de3 /mach_dep.c
parent4eaab3fed37d3d09ac7232a646a95cf720369dc9 (diff)
mach_dep.c: Replace C++ style comments with C ones
Diffstat (limited to 'mach_dep.c')
-rw-r--r--mach_dep.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mach_dep.c b/mach_dep.c
index 7b038dc7..0eda3835 100644
--- a/mach_dep.c
+++ b/mach_dep.c
@@ -34,7 +34,7 @@
asm static void PushMacRegisters()
{
- sub.w #4,sp // reserve space for one parameter.
+ sub.w #4,sp /* reserve space for one parameter */
move.l a2,(sp)
jsr GC_push_one
move.l a3,(sp)
@@ -42,11 +42,11 @@ asm static void PushMacRegisters()
move.l a4,(sp)
jsr GC_push_one
# if !__option(a6frames)
- // <pcb> perhaps a6 should be pushed if stack frames are not being used.
+ /* <pcb> perhaps a6 should be pushed if stack frames are not being used */
move.l a6,(sp)
jsr GC_push_one
# endif
- // skip a5 (globals), a6 (frame pointer), and a7 (stack pointer)
+ /* skip a5 (globals), a6 (frame pointer), and a7 (stack pointer) */
move.l d2,(sp)
jsr GC_push_one
move.l d3,(sp)
@@ -59,7 +59,7 @@ asm static void PushMacRegisters()
jsr GC_push_one
move.l d7,(sp)
jsr GC_push_one
- add.w #4,sp // fix stack.
+ add.w #4,sp /* fix stack */
rts
}