Updated the TableGen emitter for the Enhanced
[oota-llvm.git] / test / FrontendC / 2002-01-24-HandleCallInsnSEGV.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
2
3 void *dlclose(void*);
4
5 void ap_os_dso_unload(void *handle)
6 {
7     dlclose(handle);
8     return;     /* This return triggers the bug: Weird */
9 }