diff options
author | Deepak Panickal <deepak@codeplay.com> | 2013-10-22 12:27:43 +0000 |
---|---|---|
committer | Deepak Panickal <deepak@codeplay.com> | 2013-10-22 12:27:43 +0000 |
commit | d66b50c96c3bd03cf5ab2255ea770f70c65426b8 (patch) | |
tree | 44416e9c02d36a3c8cafa1f34a4428f3e0023b55 /lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp | |
parent | 0229c09d431af50fcbff953aa54d30f15691aae8 (diff) | |
download | bcm5719-llvm-d66b50c96c3bd03cf5ab2255ea770f70c65426b8.tar.gz bcm5719-llvm-d66b50c96c3bd03cf5ab2255ea770f70c65426b8.zip |
Fixes to get LLDB building on Windows again.
llvm-svn: 193159
Diffstat (limited to 'lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp')
-rw-r--r-- | lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp b/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp index daccd091fa0..8e8314feb7d 100644 --- a/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp +++ b/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp @@ -439,7 +439,7 @@ DynamicLoaderPOSIXDYLD::LoadAllCurrentModules() Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); if (log) log->Printf("DynamicLoaderPOSIXDYLD::%s unable to resolve POSIX DYLD rendezvous address", - __func__); + __FUNCTION__); return; } @@ -463,7 +463,7 @@ DynamicLoaderPOSIXDYLD::LoadAllCurrentModules() Log *log(GetLogIfAnyCategoriesSet(LIBLLDB_LOG_DYNAMIC_LOADER)); if (log) log->Printf("DynamicLoaderPOSIXDYLD::%s failed loading module %s at 0x%" PRIx64, - __func__, module_path, I->base_addr); + __FUNCTION__, module_path, I->base_addr); } } |