Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add compiler option to enable additional branch optimization steps #432

Merged
merged 1 commit into from
Jan 26, 2024

Conversation

mkruselj
Copy link
Collaborator

@mkruselj mkruselj commented Jan 26, 2024

This allows code like:

define TEST := 5

on init
   if TEST > 7
        declare some_var
   end if

   message(some_var)
end on

to error out because the condition is false

This allows code like:

define TEST := 5

on init
   if TEST > 7
        declare some_var
   end if

   message(some_var)
end on

to error out because the condition is false
@mkruselj mkruselj merged commit e58deda into nojanath:master Jan 26, 2024
1 check passed
@mkruselj mkruselj deleted the add-extra-branch-optim-option branch January 26, 2024 22:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant