Merge remote-tracking branch 'origin/topic/vern/no-opt'

* origin/topic/vern/no-opt:
  BTests & baselines for testing selective skipping of script optimization
  added &no_ZAM_opt/&no_CPP_opt attributes and --no-opt-files/--no-opt-funcs for controlling skipping script optimization

(cherry picked from commit 69b7bcc323)
This commit is contained in:
Tim Wojtulewicz 2025-09-23 09:05:53 -07:00
parent b8bb6dd983
commit 0e151d94eb
45 changed files with 459 additions and 68 deletions

View file

@ -0,0 +1,9 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
always: function() : void
compiled-C++
no_ZAM: function() : void
compiled-C++
no_CPP: function() : void
{
print no CPP;
}

View file

@ -0,0 +1,11 @@
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
always: function() : void
{
print always;
}
no_ZAM: function() : void
compiled-C++
no_CPP: function() : void
{
print no CPP;
}