[mlir][acc] Introduce MappableType interface (#122146)
[llvm-project.git] / compiler-rt / test / orc / TestCases / FreeBSD / x86-64 / lljit-ehframe.cpp
blobb73ec2387028ed3a3f6ec80cb41460fc543db1f9
1 // RUN: %clangxx -fPIC -emit-llvm -c -o %t %s
2 // RUN: %lli_orc_jitlink -relocation-model=pic %t | FileCheck %s
4 // CHECK: catch
6 #include <stdio.h>
8 int main(int argc, char *argv[]) {
9 try {
10 throw 0;
11 } catch (int X) {
12 puts("catch");
14 return 0;