1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2024-12-24 06:30:19 +00:00
llvm-6502/test/CFrontend/2002-01-24-HandleCallInsnSEGV.c
2005-02-27 06:14:21 +00:00

10 lines
197 B
C

// 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: Weird */
}