Step 69 TDD test: Strategy-aware optimization

Tests StrategyAwareOptimizer: @Reclaim(Tracing) allows free restructuring,
@Owner(Single) blocks duplication/aliasing, @Deallocate(Explicit) blocks
reordering around dealloc, @Allocate(Static) blocks dynamic allocation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bill
2026-02-07 08:31:30 -07:00
parent 01a094f28e
commit 26cf9bc9fb
2 changed files with 217 additions and 0 deletions

View File

@@ -196,6 +196,9 @@ target_include_directories(step67_test PRIVATE src)
add_executable(step68_test tests/step68_test.cpp)
target_include_directories(step68_test PRIVATE src)
add_executable(step69_test tests/step69_test.cpp)
target_include_directories(step69_test PRIVATE src)
add_executable(whetstone_editor src/main.cpp)
target_include_directories(whetstone_editor PRIVATE src)
# find_package(SDL2 REQUIRED) # Commented out for now to avoid build issues