blob: e619cf469926a98d6c74e2f729b7ccd61631acca [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
Chris Lattner11d11f02002-01-24 19:50:30 +00003void *dlclose(void*);
4
5void ap_os_dso_unload(void *handle)
6{
7 dlclose(handle);
Chris Lattner47b72fb2005-02-27 06:14:21 +00008 return; /* This return triggers the bug: Weird */
Chris Lattner11d11f02002-01-24 19:50:30 +00009}