summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/files/specialized/spec-matrix.check1
-rw-r--r--test/files/specialized/spec-matrix.scala2
2 files changed, 1 insertions, 2 deletions
diff --git a/test/files/specialized/spec-matrix.check b/test/files/specialized/spec-matrix.check
index b891d87a81..5ec3e84597 100644
--- a/test/files/specialized/spec-matrix.check
+++ b/test/files/specialized/spec-matrix.check
@@ -1,3 +1,2 @@
251437.0
Boxed doubles: 1
-Boxed integers: 4081501
diff --git a/test/files/specialized/spec-matrix.scala b/test/files/specialized/spec-matrix.scala
index 9962af2351..fb3ac91481 100644
--- a/test/files/specialized/spec-matrix.scala
+++ b/test/files/specialized/spec-matrix.scala
@@ -33,7 +33,7 @@ object Test {
val p = mult(m, n)
println(p(0, 0))
println("Boxed doubles: " + runtime.BoxesRunTime.doubleBoxCount)
- println("Boxed integers: " + runtime.BoxesRunTime.integerBoxCount)
+// println("Boxed integers: " + runtime.BoxesRunTime.integerBoxCount)
}
def randomMatrix(n: Int, m: Int) = {