summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-04-30 07:44:42 -0700
committerPaul Phillips <paulp@improving.org>2012-04-30 09:40:41 -0700
commitcf18d879d3f43d5a0c15c5c0af72f88c25605a08 (patch)
tree2112180d54c913b387791899905fb3d8ede376d0 /tools
parent94c63f5da548996535cad43142758c9405118828 (diff)
downloadscala-cf18d879d3f43d5a0c15c5c0af72f88c25605a08.tar.gz
scala-cf18d879d3f43d5a0c15c5c0af72f88c25605a08.tar.bz2
scala-cf18d879d3f43d5a0c15c5c0af72f88c25605a08.zip
Optimization of Predef implicits.
All those wildcards in a default-scoped implicit are expensive, they each lead to a typevar on every search. Restructured the Tuple2/Tuple3 Zipped classes, they're better this way anyway. This also gets all that Tuple[23] code out of genprod.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/codegen2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/codegen b/tools/codegen
index 734235aef8..35c93fba16 100755
--- a/tools/codegen
+++ b/tools/codegen
@@ -3,6 +3,6 @@
THISDIR=`dirname $0`
SCALALIB=$THISDIR/../src/library/scala
-BINDIR=$THISDIR/../build/pack/bin
+BINDIR=$THISDIR/../build/quick/bin
$BINDIR/scala scala.tools.cmd.gen.Codegen "$@"