aboutsummaryrefslogtreecommitdiff
path: root/libgo/go
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2014-07-20 15:09:04 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2014-07-20 15:09:04 +0000
commitaefa5ff4cf0a058ff76dbd0bea246b690e9dcac0 (patch)
tree3bfa1549dddd4bc2eebe7f6ef6485f1dbe443b14 /libgo/go
parent09611faf1bed0fc237cd7e01ebd93d097a2e8a73 (diff)
downloadgcc-aefa5ff4cf0a058ff76dbd0bea246b690e9dcac0.zip
gcc-aefa5ff4cf0a058ff76dbd0bea246b690e9dcac0.tar.gz
gcc-aefa5ff4cf0a058ff76dbd0bea246b690e9dcac0.tar.bz2
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 . From-SVN: r212870
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 7dae95a..5c50467 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"