summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-05-08 04:47:36 -0700
committerPaul Phillips <paulp@improving.org>2013-05-08 06:04:06 -0700
commit15df9e970a1d1323148eee714352b55eba429f44 (patch)
tree60894262689b183b0ba513fcbb8d205d03dbc87f /test
parent9a2f6c75cce22565b994c0b8bd2af8acc6e6f178 (diff)
downloadscala-15df9e970a1d1323148eee714352b55eba429f44.tar.gz
scala-15df9e970a1d1323148eee714352b55eba429f44.tar.bz2
scala-15df9e970a1d1323148eee714352b55eba429f44.zip
Limit unnecessary calls to Type#toString.
Logging revealed a few thousand calls to the often expensive Type#toString emerging from tailcalls. The error message was being generated for all methods even though it was only issued in rare cases (and for the particular tailrec failure which made the call, extremely rare.) The remaining boatload of unnecessary Type#toString calls are much harder to fix due to the design of "AbsTypeError" and the fact that the compiler approaches mutability like a cat approaches a loaded gun. See SI-6149.
Diffstat (limited to 'test')
-rw-r--r--test/files/neg/tailrec-2.check2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/tailrec-2.check b/test/files/neg/tailrec-2.check
index d3432a7e76..1daad6922e 100644
--- a/test/files/neg/tailrec-2.check
+++ b/test/files/neg/tailrec-2.check
@@ -1,4 +1,4 @@
-tailrec-2.scala:8: error: could not optimize @tailrec annotated method f: it contains a recursive call targeting supertype Super[A]
+tailrec-2.scala:8: error: could not optimize @tailrec annotated method f: it contains a recursive call targeting a supertype
@annotation.tailrec final def f[B >: A](mem: List[B]): List[B] = (null: Super[A]).f(mem)
^
tailrec-2.scala:9: error: @tailrec annotated method contains no recursive calls