1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/CFrontend/2002-01-24-HandleCallInsnSEGV.c

8 lines
142 B
C
Raw Normal View History

void *dlclose(void*);
void ap_os_dso_unload(void *handle)
{
dlclose(handle);
return; /* This return triggers the bug: Wierd */
}