Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenOpenCLCXX / atexit.clcpp
blobe33296a12ef2ad0ea194e04ab878e1580fc3a70b
1 //RUN: %clang_cc1 %s -triple spir -emit-llvm -O0 -o - | FileCheck %s
3 struct S {
4   ~S(){};
5 };
6 S s;
8 //CHECK-LABEL: define internal spir_func void @__cxx_global_var_init()
9 //CHECK: call spir_func i32 @__cxa_atexit(ptr @_ZNU3AS41SD1Ev, ptr null, ptr addrspace(1) @__dso_handle)
11 //CHECK: declare spir_func i32 @__cxa_atexit(ptr, ptr, ptr addrspace(1))