bolt/deps/llvm-18.1.8/clang/test/CodeGenCXX/block-destruct.cpp
2025-02-14 19:21:04 +01:00

9 lines
172 B
C++

// RUN: %clang_cc1 %s -fblocks -triple x86_64-apple-darwin -emit-llvm -o - | FileCheck %s
struct A { ~A(); };
void f() {
__block A a;
}
// CHECK: call void @_ZN1AD1Ev