MC: remove unnecessary enumeration prefix

This is an enum class, and will be appropriately prefixed, making the encoding
type prefix redundant.  No change to any uses as the use of this was not yet
introduced.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216893 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Saleem Abdulrasool 2014-09-01 23:48:29 +00:00
parent e64e7c4634
commit 0c1740ce1a
2 changed files with 8 additions and 8 deletions

View File

@ -31,13 +31,13 @@ class MCContext;
namespace WinEH {
enum class EncodingType {
ET_Invalid, /// Invalid
ET_Alpha, /// Windows Alpha
ET_Alpha64, /// Windows AXP64
ET_ARM, /// Windows NT (Windows on ARM)
ET_CE, /// Windows CE ARM, PowerPC, SH3, SH4
ET_Itanium, /// Windows x64, Windows Itanium (IA-64)
ET_MIPS = ET_Alpha,
Invalid, /// Invalid
Alpha, /// Windows Alpha
Alpha64, /// Windows AXP64
ARM, /// Windows NT (Windows on ARM)
CE, /// Windows CE ARM, PowerPC, SH3, SH4
Itanium, /// Windows x64, Windows Itanium (IA-64)
MIPS = Alpha,
};
}

View File

@ -81,7 +81,7 @@ MCAsmInfo::MCAsmInfo() {
ProtectedVisibilityAttr = MCSA_Protected;
SupportsDebugInformation = false;
ExceptionsType = ExceptionHandling::None;
WinEHEncodingType = WinEH::EncodingType::ET_Invalid;
WinEHEncodingType = WinEH::EncodingType::Invalid;
DwarfUsesRelocationsAcrossSections = true;
DwarfFDESymbolsUseAbsDiff = false;
DwarfRegNumForCFI = false;