14 lines · cpp
1// REQUIRES: x86-registered-target2 3// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fcxx-exceptions -o - -emit-interface-stubs %s | FileCheck %s4 5// CHECK: --- !ifs-v16// CHECK-NEXT: IfsVersion: 3.07// CHECK-NEXT: Target: x86_64-unknown-linux-gnu8// CHECK-NEXT: Symbols:9// CHECK-NEXT: - { Name: "_Z1fv", Type: Func }10// CHECK-NEXT: ...11 12class C5 {};13void f() { try {} catch(C5&){} }14