aboutsummaryrefslogtreecommitdiff
path: root/libgo/go
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2014-07-20 15:09:04 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2014-07-20 15:09:04 +0000
commit616ba26bc5a1926bfb2fba6ead39f3b5ee8cccb6 (patch)
tree3bfa1549dddd4bc2eebe7f6ef6485f1dbe443b14 /libgo/go
parent383b71a95aff980cdcefcecc91c6bd7cd3934e68 (diff)
runtime: add a missing import
This adds an import of the runtime package to fix compilation of the TestStopCPUProfilingWithProfilerOff function. The gccgo compiler should never have accepted this. The patch for the comiler is http://codereview.appspot.com/116960043 . The test is https://codereview.appspot.com/118000043 . git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@212870 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo/go')
-rw-r--r--libgo/go/runtime/runtime_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/runtime/runtime_test.go b/libgo/go/runtime/runtime_test.go
index 7dae95a2d4f..5c504675968 100644
--- a/libgo/go/runtime/runtime_test.go
+++ b/libgo/go/runtime/runtime_test.go
@@ -9,7 +9,7 @@ import (
// "io/ioutil"
// "os"
// "os/exec"
- // . "runtime"
+ . "runtime"
"runtime/debug"
// "strconv"
// "strings"