-
Notifications
You must be signed in to change notification settings - Fork 194
Fix compilation of some mutually recursive functions #1393
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
(**************************************************************************) | ||
(* *) | ||
(* OCaml *) | ||
(* *) | ||
(* Copyright 2019 Institut National de Recherche en Informatique et *) | ||
(* en Automatique. *) | ||
(* *) | ||
(* All rights reserved. This file is distributed under the terms of *) | ||
(* the GNU Lesser General Public License version 2.1, with the *) | ||
(* special exception on linking described in the file LICENSE. *) | ||
(* *) | ||
(**************************************************************************) | ||
|
||
let rec h = | ||
let rec f n = if n >= 0 then g (n - 1) | ||
and g n = | ||
h n; | ||
f n | ||
in | ||
f | ||
|
||
let () = ignore (h 10) | ||
|
||
let mooo x = | ||
let rec h = | ||
ignore (Sys.opaque_identity x); | ||
let rec g n = | ||
h n; | ||
f n | ||
and f n = if n >= 0 then g (n - 1) in | ||
f | ||
in | ||
h | ||
|
||
let h = mooo 3 | ||
|
||
let () = ignore (h 10) | ||
|
||
let rec foo = | ||
let rec f = function | ||
| 0 -> 100 | ||
| n -> foo (n - 1) | ||
and g = function | ||
| 0 -> 200 | ||
| n -> f (n - 1) | ||
in | ||
g | ||
|
||
let%expect_test _ = | ||
print_int (foo 2); | ||
print_newline (); | ||
[%expect {| 200 |}] | ||
|
||
let%expect_test _ = | ||
print_int (foo 7); | ||
print_newline (); | ||
[%expect {| 100 |}] | ||
|
||
let with_free_vars a b c = | ||
let rec foo = | ||
let rec f = function | ||
| 0 -> 100 + a + b + c | ||
| n -> foo (n - 1) | ||
and g = function | ||
| 0 -> 200 + a + b + c | ||
| n -> f (n - 1) | ||
in | ||
g | ||
in | ||
foo | ||
|
||
let%expect_test _ = | ||
print_int (with_free_vars 1 2 3 2); | ||
print_newline (); | ||
[%expect {| 206 |}] | ||
|
||
let%expect_test _ = | ||
print_int (with_free_vars 1 2 3 7); | ||
print_newline (); | ||
[%expect {| 106 |}] | ||
|
||
let bar = | ||
let rec f = function | ||
| 0 -> 3 | ||
| n -> g (n - 1) | ||
and g = function | ||
| 0 -> 10 + f 10 | ||
| n -> f (n - 1) | ||
in | ||
let foof = f and goof = g in | ||
foof, goof | ||
|
||
let%expect_test _ = | ||
print_int (snd bar 42); | ||
print_newline (); | ||
[%expect {| 13 |}] | ||
|
||
let rec foobar = | ||
let rec f x = function | ||
| 0 -> 100 | ||
| n -> foobar x (n - 1) | ||
and g x = function | ||
| 0 -> 200 | ||
| n -> f x (n - 1) | ||
in | ||
g | ||
|
||
let%expect_test _ = | ||
print_int (foobar 5 2); | ||
print_newline (); | ||
[%expect {| 200 |}] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.