summaryrefslogtreecommitdiff
path: root/test/files/run/constant-optimization.check
diff options
context:
space:
mode:
authorJames Iry <jamesiry@gmail.com>2013-03-11 13:26:11 -0700
committerJames Iry <jamesiry@gmail.com>2013-03-14 10:20:10 -0700
commit3a17ff00067f8f11288b1ddc778e193bed3ea017 (patch)
tree949e940c0b93a2ccdbf2310f06cd337a9b905ac1 /test/files/run/constant-optimization.check
parent69109c0ace5e3ac831c3b0a5635f25317d3b28bf (diff)
downloadscala-3a17ff00067f8f11288b1ddc778e193bed3ea017.tar.gz
scala-3a17ff00067f8f11288b1ddc778e193bed3ea017.tar.bz2
scala-3a17ff00067f8f11288b1ddc778e193bed3ea017.zip
Cleanup of constant optimization
This commit cleans up constant optimization from the review of https://github.com/scala/scala/pull/2214 . * drops are done using the instruction's consumed count rather than a numeric literal * drops are moved into one common method in the main instruction interpreter * One instance of x.length > y.length is replaced with x.lengthCompare(y.length) > 0 * NaN is dealt with by treating it as an UNKNOWN * A test is added to make sure NaN semantics aren't broken. * The constant-optmization test is improved with tests for switch statements
Diffstat (limited to 'test/files/run/constant-optimization.check')
-rw-r--r--test/files/run/constant-optimization.check3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/run/constant-optimization.check b/test/files/run/constant-optimization.check
index 090e53ac40..957ffc5a87 100644
--- a/test/files/run/constant-optimization.check
+++ b/test/files/run/constant-optimization.check
@@ -1,2 +1,5 @@
testBothReachable: good
testOneReachable: good
+testAllReachable: good
+testOneUnreachable: good
+testDefaultUnreachable: good