blob: d1eb63a9ca23b7f7c850fdccf4c9ec365038d93d [file] [edit]
// RUN: %clangxx -fPIC -emit-llvm -c -o %t %s
// RUN: %lli_orc_jitlink -relocation-model=pic %t | FileCheck %s
// REQUIRES: disabled
//// https://github.com/llvm/llvm-project/issues/175094
// CHECK: catch
#include <stdio.h>
int main(int argc, char *argv[]) {
try {
throw 0;
} catch (int X) {
puts("catch");
}
return 0;
}