llvm-6502/test/CFrontend/2002-01-24-HandleCallInsnSEGV.c

10 lines
197 B
C
Raw Normal View History

// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
void *dlclose(void*);
void ap_os_dso_unload(void *handle)
{
dlclose(handle);
return; /* This return triggers the bug: Wierd */
}