aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Stucki <nicolas.stucki@gmail.com>2017-04-19 10:35:49 +0200
committerNicolas Stucki <nicolas.stucki@gmail.com>2017-04-19 11:15:12 +0200
commit5140b6d24a2fd9f3669caa6e85d59bcb72f8188a (patch)
tree03e76501a5694971426e1c7af3507b578cf43e96
parent2efb6dd13fd4600d991cf8efe186e860c8cbadc6 (diff)
downloaddotty-5140b6d24a2fd9f3669caa6e85d59bcb72f8188a.tar.gz
dotty-5140b6d24a2fd9f3669caa6e85d59bcb72f8188a.tar.bz2
dotty-5140b6d24a2fd9f3669caa6e85d59bcb72f8188a.zip
Add missing -Yno-inline to stdlib compilation flags.
-rw-r--r--bench/test/dotty/tools/benchmarks/Benchmarks.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/test/dotty/tools/benchmarks/Benchmarks.scala b/bench/test/dotty/tools/benchmarks/Benchmarks.scala
index 04e7e25d7..c3cf15471 100644
--- a/bench/test/dotty/tools/benchmarks/Benchmarks.scala
+++ b/bench/test/dotty/tools/benchmarks/Benchmarks.scala
@@ -52,7 +52,7 @@ object BenchTests extends OnlineRegressionReport {
val stdlibFiles = StdLibSources.whitelisted
- def stdLib = compiler.compileList("compileStdLib", stdlibFiles, "-migration" :: scala2mode)
+ def stdLib = compiler.compileList("compileStdLib", stdlibFiles, "-migration" :: "-Yno-inline" :: scala2mode)
def dotty = compiler.compileDir(dottyDir, ".", List("-deep", "-strict"))