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-- 2.6 KB
GenGen.cpp -rw-r--r-- 120 bytes
RunGen.h -rw-r--r-- 57.2 KB
RunGenMain.cpp -rw-r--r-- 22.9 KB
binary2cpp.cpp -rw-r--r-- 1.7 KB
build_halide_h.cpp -rw-r--r-- 2.6 KB
find_inverse.cpp -rw-r--r-- 11.8 KB
halide_benchmark.h -rw-r--r-- 9.4 KB
halide_config.make.tpl -rw-r--r-- 157 bytes
halide_image.h -rw-r--r-- 743 bytes
halide_image_info.h -rw-r--r-- 10.4 KB
halide_image_io.h -rw-r--r-- 76.0 KB
halide_malloc_trace.h -rw-r--r-- 3.3 KB
halide_thread_pool.h -rw-r--r-- 4.8 KB
halide_trace_config.h -rw-r--r-- 19.1 KB
launch_wasm_test.js -rw-r--r-- 936 bytes
makelib.sh -rwxr-xr-x 2.2 KB
regexp_replace.cpp -rw-r--r-- 860 bytes

back to top