From: Russ Cox Date: Tue, 28 Oct 2014 00:47:15 +0000 (-0400) Subject: runtime: disable fake time on nacl X-Git-Tag: go1.4beta1~33 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=138b5ccd12739f47be1f21f6437d6795b389b9f7;p=gostls13.git runtime: disable fake time on nacl This leaked into the CL I submitted for Minux, because I was testing it. TBR=adg CC=golang-codereviews https://golang.org/cl/159600044 --- diff --git a/src/runtime/rt0_nacl_amd64p32.s b/src/runtime/rt0_nacl_amd64p32.s index 6ad8bea6c7..54e4b1de89 100644 --- a/src/runtime/rt0_nacl_amd64p32.s +++ b/src/runtime/rt0_nacl_amd64p32.s @@ -25,6 +25,6 @@ TEXT _rt0_amd64p32_nacl(SB),NOSPLIT,$16 TEXT main(SB),NOSPLIT,$0 // Uncomment for fake time like on Go Playground. - MOVQ $1257894000000000000, AX - MOVQ AX, runtime·faketime(SB) + //MOVQ $1257894000000000000, AX + //MOVQ AX, runtime·faketime(SB) JMP runtime·rt0_go(SB)