aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2014-10-27 20:47:15 -0400
committerRuss Cox <rsc@golang.org>2014-10-27 20:47:15 -0400
commit138b5ccd12739f47be1f21f6437d6795b389b9f7 (patch)
tree675f5c23c103f718bbf516ac32ec61ea9cfd9d70
parent1c534714e1d353d45670a3ed76f4f4a7c7bfa7c6 (diff)
downloadgo-138b5ccd12739f47be1f21f6437d6795b389b9f7.tar.gz
go-138b5ccd12739f47be1f21f6437d6795b389b9f7.zip
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
-rw-r--r--src/runtime/rt0_nacl_amd64p32.s4
1 files changed, 2 insertions, 2 deletions
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)