aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC/2002-01-24-HandleCallInsnSEGV.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/FrontendC/2002-01-24-HandleCallInsnSEGV.c')
-rw-r--r--test/FrontendC/2002-01-24-HandleCallInsnSEGV.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/FrontendC/2002-01-24-HandleCallInsnSEGV.c b/test/FrontendC/2002-01-24-HandleCallInsnSEGV.c
deleted file mode 100644
index e619cf4..0000000
--- a/test/FrontendC/2002-01-24-HandleCallInsnSEGV.c
+++ /dev/null
@@ -1,9 +0,0 @@
-// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
-
-void *dlclose(void*);
-
-void ap_os_dso_unload(void *handle)
-{
- dlclose(handle);
- return; /* This return triggers the bug: Weird */
-}