diff options
author | Russ Cox <rsc@golang.org> | 2014-10-27 20:47:15 -0400 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2014-10-27 20:47:15 -0400 |
commit | a65e1093f401a6bc3deeed8b2c3976c0bca52b33 (patch) | |
tree | aa57d1a325323766ad6a11fa5cacdafde3079fa1 /src | |
parent | 89a71934ad700582a3d6937bb936e2cb3c6704c8 (diff) | |
download | go-a65e1093f401a6bc3deeed8b2c3976c0bca52b33.tar.gz |
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://codereview.appspot.com/159600044
Diffstat (limited to 'src')
-rw-r--r-- | src/runtime/rt0_nacl_amd64p32.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/rt0_nacl_amd64p32.s b/src/runtime/rt0_nacl_amd64p32.s index 6ad8bea6c..54e4b1de8 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) |