diff options
author | Martin Storsjo <martin@martin.st> | 2019-09-21 19:09:54 +0000 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2019-09-21 19:09:54 +0000 |
commit | 5c38730dbd002a9f669bf3fb3c0a8b19e84bdd97 (patch) | |
tree | 4d69c60842d7af9145b2693ad65253128d8d5644 /lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp | |
parent | 2e25c44dc3fa97defe03e4b5d813344577d6b5fb (diff) | |
download | bcm5719-llvm-5c38730dbd002a9f669bf3fb3c0a8b19e84bdd97.tar.gz bcm5719-llvm-5c38730dbd002a9f669bf3fb3c0a8b19e84bdd97.zip |
[LLDB] Use LLVM_FALLTHROUGH instead of a custom comment
This fixes a warning when built with Clang in MinGW mode.
Differential Revision: https://reviews.llvm.org/D67860
llvm-svn: 372484
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp b/lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp index 71ad57c45c7..e5171f2b7eb 100644 --- a/lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp +++ b/lldb/source/Plugins/Process/Windows/Common/NativeProcessWindows.cpp @@ -479,7 +479,7 @@ NativeProcessWindows::OnDebugException(bool first_chance, return ExceptionResult::BreakInDebugger; } - // Fall through + LLVM_FALLTHROUGH; default: LLDB_LOG(log, "Debugger thread reported exception {0:x} at address {1:x} " |