Rename EHPersonality::MSVC_Win64SEH to EHPersonality::MSVC_TableSEH. NFC.
authorLuqman Aden <me@luqman.ca>
Wed, 28 Oct 2020 06:18:26 +0000 (23:18 -0700)
committerLuqman Aden <me@luqman.ca>
Wed, 28 Oct 2020 06:22:13 +0000 (23:22 -0700)
commit4c0a016927872c0c820c0ea5507df102fd8b9b58
tree24c5cea38f77faefa7c29f827b287f96eff4e834
parent624fc63a0510d77dc9f08099aa1d2d9f1996775c
Rename EHPersonality::MSVC_Win64SEH to EHPersonality::MSVC_TableSEH. NFC.

The types of SEH aren't x86(-32) vs x64 but rather stack-based exception chaining
vs table-based exception handling. x86-32 is the only arch for which Windows
uses the former. 32-bit ARM would use what is called Win64SEH today, which
is a bit confusing so instead let's just rename it to be a bit more clear.

Reviewed By: compnerd, rnk

Differential Revision: https://reviews.llvm.org/D90117
llvm/include/llvm/Analysis/EHPersonalities.h
llvm/lib/Analysis/EHPersonalities.cpp
llvm/lib/CodeGen/AsmPrinter/WinException.cpp
llvm/lib/Transforms/InstCombine/InstructionCombining.cpp