aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2017-04-20 10:12:07 +0200
committerGitHub <noreply@github.com>2017-04-20 10:12:07 +0200
commit2ccd284da902cd49e013f5237a28c717e50d81e1 (patch)
tree5214617d7fe92bd136a864273076efcb34e0b929
parentbefdad3870860e1527a352f3e973e2a23cc552a6 (diff)
parent5140b6d24a2fd9f3669caa6e85d59bcb72f8188a (diff)
downloaddotty-2ccd284da902cd49e013f5237a28c717e50d81e1.tar.gz
dotty-2ccd284da902cd49e013f5237a28c717e50d81e1.tar.bz2
dotty-2ccd284da902cd49e013f5237a28c717e50d81e1.zip
Merge pull request #2273 from dotty-staging/fix-stdlib-bench
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"))