diff options
author | Fangrui Song <i@maskray.me> | 2022-08-08 11:31:49 -0700 |
---|---|---|
committer | Fangrui Song <i@maskray.me> | 2022-08-08 11:31:49 -0700 |
commit | 59d2495fe2c1254f84ad4d2bd61a41e79ff0d44d (patch) | |
tree | 6fcd062e27c48a8886e65115c829e1da8e7f9ce6 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp | |
parent | d9728a9baa49e6ddfa6c91af9fd7bf6a760f9a62 (diff) | |
download | llvm-59d2495fe2c1254f84ad4d2bd61a41e79ff0d44d.zip llvm-59d2495fe2c1254f84ad4d2bd61a41e79ff0d44d.tar.gz llvm-59d2495fe2c1254f84ad4d2bd61a41e79ff0d44d.tar.bz2 |
[lldb] LLVM_FALLTHROUGH => [[fallthrough]]. NFC
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp index d1b30f7..34753d5 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp @@ -1733,7 +1733,7 @@ GDBRemoteCommunicationServerLLGS::Handle_vCont( if (thread_action.signal == 0) return SendIllFormedResponse( packet, "Could not parse signal in vCont packet C action"); - LLVM_FALLTHROUGH; + [[fallthrough]]; case 'c': // Continue @@ -1745,7 +1745,7 @@ GDBRemoteCommunicationServerLLGS::Handle_vCont( if (thread_action.signal == 0) return SendIllFormedResponse( packet, "Could not parse signal in vCont packet S action"); - LLVM_FALLTHROUGH; + [[fallthrough]]; case 's': // Step |