Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/en/docs/Design/do_transformation.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ of this transformation.
func.func @my_function(%input : i1 {secret.secret}) -> () {
...
// Violation: %input is used as a condition causing a data-dependent branch
%result =`%input -> (i16) {
%result = scf.if %input -> (i16) {
%a = arith.muli %b, %c : i16
scf.yield %a : i16
} else {
Expand Down
Loading