Revision 08afbbcb24debebc5ce189e957daf38ebe8b0934 authored by Andrew Adams on 19 October 2023, 17:12:31 UTC, committed by Andrew Adams on 19 October 2023, 17:12:31 UTC
In the following code:

let a = b in
  X
let a = c in
  Y

If Stmt X successfully had stores interleaved, it was re-nesting it like
so:

let a = b in
  X
  let a = c in
    Y

This introduces a shadowed variable 'a', which is illegal at this stage
of lowering.

Fixes #7906

Also some drive-by fixes to earlier tests that had debugging code left
in.
1 parent 5c97c3c
History
File Mode Size
CMakeLists.txt -rw-r--r-- 1.1 KB

back to top