From 1a8daa2d6cbf46a7cdd9180c11c641adabcf6d92 Mon Sep 17 00:00:00 2001 From: Simon Ochsenreither Date: Wed, 16 Sep 2015 17:31:02 +0200 Subject: Remove GenASM, merge remaining common code snippets With GenBCode being the default and only supported backend for Java 8, we can get rid of GenASM. This commit also fixes/migrates/moves to pending/deletes tests which depended on GenASM before. --- test/pending/jvm/constant-optimization/Foo_1.scala | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/pending/jvm/constant-optimization/Foo_1.scala (limited to 'test/pending/jvm/constant-optimization/Foo_1.scala') diff --git a/test/pending/jvm/constant-optimization/Foo_1.scala b/test/pending/jvm/constant-optimization/Foo_1.scala new file mode 100644 index 0000000000..6f408044d7 --- /dev/null +++ b/test/pending/jvm/constant-optimization/Foo_1.scala @@ -0,0 +1,9 @@ +class Foo_1 { + def foo() { + // constant optimization should eliminate all branches + val i = 1 + val x = if (i != 1) null else "good" + val y = if (x == null) "good" else x + "" + println(y) + } +} \ No newline at end of file -- cgit v1.2.3