vm: More indentation fixes

Slava Pestov 2009-09-14 03:14:48 -05:00
parent 78e143b13c
commit 3db631716f
4 changed files with 115 additions and 116 deletions

View File

@ -90,6 +90,7 @@ multiply_overflow:
#define SAVE_V(register,offset) \ #define SAVE_V(register,offset) \
li r2,SAVE_AT(offset) XX \ li r2,SAVE_AT(offset) XX \
stvxl register,r2,r1 stvxl register,r2,r1
#define RESTORE_V(register,offset) \ #define RESTORE_V(register,offset) \
li r2,SAVE_AT(offset) XX \ li r2,SAVE_AT(offset) XX \
lvxl register,r2,r1 lvxl register,r2,r1
@ -104,8 +105,6 @@ multiply_overflow:
lwz r1,0(r1) XX /* destroy the stack frame */ \ lwz r1,0(r1) XX /* destroy the stack frame */ \
mtlr r0 /* get ready to return */ mtlr r0 /* get ready to return */
/* We have to save and restore nonvolatile registers because /* We have to save and restore nonvolatile registers because
the Factor compiler treats the entire register file as volatile. */ the Factor compiler treats the entire register file as volatile. */
DEF(void,c_to_factor,(CELL quot)): DEF(void,c_to_factor,(CELL quot)):