diff options
author | Kristof Beyls <kristof.beyls@arm.com> | 2017-03-31 14:58:52 +0000 |
---|---|---|
committer | Kristof Beyls <kristof.beyls@arm.com> | 2017-03-31 14:58:52 +0000 |
commit | 7adf8c52a82be01a3c3428df9e2e84b7083a69d5 (patch) | |
tree | 2413168e8fa84f0513402df88c0b77e847226165 /llvm/lib/Support/Windows | |
parent | 9bff3b78186c09027126606d408712d3b1a31c52 (diff) | |
download | bcm5719-llvm-7adf8c52a82be01a3c3428df9e2e84b7083a69d5.tar.gz bcm5719-llvm-7adf8c52a82be01a3c3428df9e2e84b7083a69d5.zip |
Remove name space pollution from Signals.cpp
llvm-svn: 299224
Diffstat (limited to 'llvm/lib/Support/Windows')
-rw-r--r-- | llvm/lib/Support/Windows/Signals.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/Windows/Signals.inc b/llvm/lib/Support/Windows/Signals.inc index f739421eece..1ef51888baf 100644 --- a/llvm/lib/Support/Windows/Signals.inc +++ b/llvm/lib/Support/Windows/Signals.inc @@ -776,7 +776,7 @@ static LONG WINAPI LLVMUnhandledExceptionFilter(LPEXCEPTION_POINTERS ep) { // the nasty sorts of crashes that aren't 100% reproducible from a set of // inputs (or in the event that the user is unable or unwilling to provide a // reproducible case). - if (!llvm::Process::AreCoreFilesPrevented()) { + if (!llvm::sys::Process::AreCoreFilesPrevented()) { MINIDUMP_EXCEPTION_INFORMATION ExceptionInfo; ExceptionInfo.ThreadId = ::GetCurrentThreadId(); ExceptionInfo.ExceptionPointers = ep; |