mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 03:25:54 -04:00

Unless the test is explicitly testing a driver feature if clang interface stubs I have changed the tests to use %clang_cc1. This should make some changes I plan to make to the driver job pipeline cause fewer test changes and breakages.
16 lines
438 B
C++
16 lines
438 B
C++
// REQUIRES: x86-registered-target
|
|
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fcxx-exceptions -o - -emit-interface-stubs %s | FileCheck %s
|
|
|
|
|
|
// CHECK: --- !experimental-ifs-v1
|
|
// CHECK-NEXT: IfsVersion: 1.0
|
|
// CHECK-NEXT: Triple: x86_64-unknown-linux-gnu
|
|
// CHECK-NEXT: ObjectFileFormat: ELF
|
|
// CHECK-NEXT: Symbols:
|
|
// CHECK-NEXT: "_Z1fv" : { Type: Func }
|
|
// CHECK-NEXT: ...
|
|
|
|
class C5 {};
|
|
void f() { try {} catch(C5&){} }
|