Sign in
llvm
/
llvm-project.git
/
refs/heads/main
/
.
/
clang
/
test
/
CodeGenSPIRV
/
global-dtor.cpp
blob: da3b1e333a80e3778e7a424534fb22826aeae3dc [
file
] [
edit
]
// RUN: %clang_cc1 -triple spirv64-intel %s -emit-llvm -o - | FileCheck %s
// CHECK: all spir_func addrspace(9) i32 @__cxa_atexit(ptr addrspace(4) addrspacecast (ptr addrspace(9) @{{.*}} to ptr addrspace(4)),
struct
S
{
~
S
()
{}
};
S s
;