summaryrefslogtreecommitdiff
path: root/libgo/runtime/runtime.c
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2012-03-30 22:09:55 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2012-03-30 22:09:55 +0000
commit75cd0c848ff1a57a6fa90b79eef180e7a33b0a42 (patch)
tree26322d11da7cc220190e0b8430565ea207eb3eab /libgo/runtime/runtime.c
parent5a333029b49a1435961f5e39c5c16294da81e322 (diff)
downloadgcc-75cd0c848ff1a57a6fa90b79eef180e7a33b0a42.tar.gz
libgo: Update to weekly.2012-03-22.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@186026 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo/runtime/runtime.c')
-rw-r--r--libgo/runtime/runtime.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/libgo/runtime/runtime.c b/libgo/runtime/runtime.c
index d1ce26db499..a0dbf80b0a0 100644
--- a/libgo/runtime/runtime.c
+++ b/libgo/runtime/runtime.c
@@ -74,7 +74,7 @@ void
runtime_panicstring(const char *s)
{
Eface err;
-
+
if(runtime_m()->gcing) {
runtime_printf("panic: %s\n", s);
runtime_throw("panic during gc");
@@ -101,7 +101,7 @@ runtime_goargs(void)
{
String *s;
int32 i;
-
+
// for windows implementation see "os" package
if(Windows)
return;
@@ -119,7 +119,7 @@ runtime_goenvs_unix(void)
{
String *s;
int32 i, n;
-
+
for(n=0; argv[argc+1+n] != 0; n++)
;
@@ -195,8 +195,6 @@ void
runtime_check(void)
{
__go_register_gc_roots(&runtime_roots);
-
- runtime_initsig ();
}
int64