this was removed from the Unix side.

llvm-svn: 48370
This commit is contained in:
Chris Lattner 2008-03-14 20:41:50 +00:00
parent 37a26f973f
commit c4f8df4a84

View File

@ -176,10 +176,5 @@ void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
return 0;
}
void *DynamicLibrary::GetAddressOfSymbol(const char *symbolName) {
assert(handle != 0 && "Invalid DynamicLibrary handle");
return (void *) GetProcAddress((HMODULE)handle, symbolName);
}
}