diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-09-01 23:48:29 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-09-01 23:48:29 +0000 |
commit | d458091907ff7542e206bfa7c068f68bd8976871 (patch) | |
tree | d3a79e28f6f11c972901f9e80671fe5e52c119df /llvm/lib/MC/MCAsmInfo.cpp | |
parent | fa8d0242103ba4da6001daf7169894268eb7fafa (diff) | |
download | llvm-d458091907ff7542e206bfa7c068f68bd8976871.zip llvm-d458091907ff7542e206bfa7c068f68bd8976871.tar.gz llvm-d458091907ff7542e206bfa7c068f68bd8976871.tar.bz2 |
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.
llvm-svn: 216893
Diffstat (limited to 'llvm/lib/MC/MCAsmInfo.cpp')
-rw-r--r-- | llvm/lib/MC/MCAsmInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/MC/MCAsmInfo.cpp b/llvm/lib/MC/MCAsmInfo.cpp index c7d8153..ed3d5ed 100644 --- a/llvm/lib/MC/MCAsmInfo.cpp +++ b/llvm/lib/MC/MCAsmInfo.cpp @@ -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; |