Issue 153288
Summary [CIR] Upstream support for goto handling
Labels ClangIR
Assignees Andres-Salamanca
Reporter andykaylor
    ### Overview
Upstream support for handling goto statements in ClangIR.

This will also require upstreaming of the GotoSolver transform from the ClangIR incubator.

### Suggested minimal test case
```
void g0(int a) {
  int b = a;
  goto end;
  b = b + 1;
end:
  b = b + 2;
}
```

### Existing incubator tests
clang/test/CIR/CodeGen/goto.cpp
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to