From 47519b4eb6b4aec78e3c13e08811c7346c61acc4 Mon Sep 17 00:00:00 2001 From: phaller Date: Thu, 9 Aug 2012 17:23:47 +0200 Subject: Revert "Add missing cases in tail return transform" This reverts commit 8d020fab9758ced93eb18fa51c906b95ec104aed. --- test/files/continuations-run/t5314.check | 4 ---- test/files/continuations-run/t5314.scala | 11 ----------- 2 files changed, 15 deletions(-) (limited to 'test/files') diff --git a/test/files/continuations-run/t5314.check b/test/files/continuations-run/t5314.check index 4b35d8e6d0..4951e7caae 100644 --- a/test/files/continuations-run/t5314.check +++ b/test/files/continuations-run/t5314.check @@ -1,7 +1,3 @@ -7 -7 -7 -8 8 hi 8 diff --git a/test/files/continuations-run/t5314.scala b/test/files/continuations-run/t5314.scala index d611016ce4..0bdea19824 100644 --- a/test/files/continuations-run/t5314.scala +++ b/test/files/continuations-run/t5314.scala @@ -29,17 +29,6 @@ object Test extends App { def nocps(x: Int): Int = { return x; x } - def foo2(x:Int): Int @cps[Int] = 7 - def bar2(x:Int): Int @cps[Int] = { foo2(x); return 7 } - def bar3(x:Int): Int @cps[Int] = { foo2(x); if (x == 7) return 7 else return foo2(x) } - def bar4(x:Int): Int @cps[Int] = { foo2(x); if (x == 7) return 7 else foo2(x) } - def bar5(x:Int): Int @cps[Int] = { foo2(x); if (x == 7) return 7 else 8 } - println(reset { bar2(10) }) - println(reset { bar3(10) }) - println(reset { bar4(10) }) - println(reset { bar5(10) }) - - /* original test case */ val repro = new ReturnRepro repro.caller repro.caller2 -- cgit v1.2.3