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 | bcm5719-llvm-d458091907ff7542e206bfa7c068f68bd8976871.tar.gz bcm5719-llvm-d458091907ff7542e206bfa7c068f68bd8976871.zip |
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 c7d815387bb..ed3d5edb2e7 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; |