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