blob: 09029fb945ef00c29fba1c9710933a0445513a50 [file] [log] [blame]
// 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 */
}