llvm / clangir

A new (MLIR based) high-level IR for clang.
https://clangir.org
Other
307 stars 84 forks source link

Crash with try statement #688

Open wenpen opened 2 weeks ago

wenpen commented 2 weeks ago
void f(){
}

void test(int x){
  try {
    f();
    if (x) {
      f();
    }
  } catch(...) {
  }
}
bcardosolopes commented 2 weeks ago

I'm going to resume exception work pretty soon, assigning to me.