Skip to content

Commit

Permalink
fix #37033, avoid backedges from default include definition (#37049)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Aug 19, 2020
1 parent e58fb28 commit 04e47cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jlfrontend.scm
Original file line number Diff line number Diff line change
Expand Up @@ -191,11 +191,11 @@
(= (call include ,x)
(block
,@loc
(call (top include) ,name ,x)))
(call (core _apply_latest) (top include) (call (core svec) ,name ,x))))
(= (call include (:: ,mex (top Function)) ,x)
(block
,@loc
(call (top include) ,mex ,name ,x)))))
(call (core _apply_latest) (top include) (call (core svec) ,mex ,name ,x))))))
'none 0))

; run whole frontend on a string. useful for testing.
Expand Down

2 comments on commit 04e47cf

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your package evaluation job has completed - possible new issues were detected. A full report can be found here. cc @maleadt

Please sign in to comment.