From: Erik M. <er...@us...> - 2001-07-25 18:04:05
|
Update of /cvsroot/blob/blob/src In directory usw-pr-cvs1:/tmp/cvs-serv11538 Modified Files: Tag: blob_1_0_9_hack trampoline.S Log Message: if main() somehow returned, just call it again Index: trampoline.S =================================================================== RCS file: /cvsroot/blob/blob/src/Attic/trampoline.S,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -r1.1.2.1 -r1.1.2.2 --- trampoline.S 2001/07/08 22:35:25 1.1.2.1 +++ trampoline.S 2001/07/25 18:04:02 1.1.2.2 @@ -30,3 +30,5 @@ .globl _trampoline _trampoline: bl main + /* if main ever returns we just call it again */ + b _trampoline |