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
BundleStatic.cmake -rw-r--r-- 7.8 KB
CheckFilesExist.cmake -rw-r--r-- 455 bytes
FindHalide.cmake -rw-r--r-- 292 bytes
FindHalide_WebGPU.cmake -rw-r--r-- 744 bytes
FindHexagonSDK.cmake -rw-r--r-- 2.5 KB
HalideGeneratorHelpers.cmake -rw-r--r-- 32.5 KB
HalideTargetHelpers.cmake -rw-r--r-- 2.3 KB
HalideTestHelpers.cmake -rw-r--r-- 4.6 KB
TargetExportScript.cmake -rw-r--r-- 2.3 KB
WipeStandardFlags.cmake -rw-r--r-- 702 bytes
toolchain.linux-aarch64.cmake -rw-r--r-- 689 bytes
toolchain.linux-arm32.cmake -rw-r--r-- 1.3 KB
toolchain.linux-i386.cmake -rw-r--r-- 612 bytes
toolchain.linux-x64-asan.cmake -rw-r--r-- 2.0 KB
toolchain.linux-x64-fuzzer.cmake -rw-r--r-- 1.4 KB

back to top