Rename hoops() as main() -- much clearer.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2758 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/stage1.c b/coregrind/stage1.c
index d056a1a..5b4e4db 100644
--- a/coregrind/stage1.c
+++ b/coregrind/stage1.c
@@ -248,7 +248,7 @@
    return 1;
 }
 
-static void hoops(void)
+static void main2(void)
 {
    int err, padfile;
    struct exeinfo info;
@@ -311,7 +311,7 @@
    setrlimit(RLIMIT_AS, &rlim);
 
    /* move onto another stack so we can play with the main one */
-   jmp_with_stack((addr_t)hoops, (addr_t)stack + sizeof(stack));
+   jmp_with_stack((addr_t)main2, (addr_t)stack + sizeof(stack));
 }
 
 /*--------------------------------------------------------------------*/