xref: /aosp_15_r20/external/clang/test/CodeGen/builtin-unwind-init.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -emit-llvm < %s -o - | FileCheck %s
2 
a()3 void a() { __builtin_unwind_init(); }
4 
5 // CHECK:  call void @llvm.eh.unwind.init()
6