diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-07-20 15:09:04 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-07-20 15:09:04 +0000 |
commit | 616ba26bc5a1926bfb2fba6ead39f3b5ee8cccb6 (patch) | |
tree | 3bfa1549dddd4bc2eebe7f6ef6485f1dbe443b14 /libgo | |
parent | 383b71a95aff980cdcefcecc91c6bd7cd3934e68 (diff) | |
download | gcc-616ba26bc5a1926bfb2fba6ead39f3b5ee8cccb6.tar.gz |
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')
-rw-r--r-- | libgo/go/runtime/runtime_test.go | 2 |
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" |