[llvm] c866dc9 - [AVR] Init member added by D140830
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 10 17:45:46 PST 2023
Author: Vitaly Buka
Date: 2023-01-10T17:44:31-08:00
New Revision: c866dc9dd2b2f768efd1d919fd84d83d01da47c4
URL: https://github.com/llvm/llvm-project/commit/c866dc9dd2b2f768efd1d919fd84d83d01da47c4
DIFF: https://github.com/llvm/llvm-project/commit/c866dc9dd2b2f768efd1d919fd84d83d01da47c4.diff
LOG: [AVR] Init member added by D140830
Added:
Modified:
llvm/lib/Target/AVR/AVRSubtarget.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/AVR/AVRSubtarget.cpp b/llvm/lib/Target/AVR/AVRSubtarget.cpp
index 8a5481423e9f1..184ad4399069f 100644
--- a/llvm/lib/Target/AVR/AVRSubtarget.cpp
+++ b/llvm/lib/Target/AVR/AVRSubtarget.cpp
@@ -35,9 +35,9 @@ AVRSubtarget::AVRSubtarget(const Triple &TT, const std::string &CPU,
m_hasSRAM(false), m_hasJMPCALL(false), m_hasIJMPCALL(false),
m_hasEIJMPCALL(false), m_hasADDSUBIW(false), m_hasSmallStack(false),
m_hasMOVW(false), m_hasLPM(false), m_hasLPMX(false), m_hasELPM(false),
- m_hasELPMX(false), m_hasSPM(false), m_hasSPMX(false), m_hasDES(false),
- m_supportsRMW(false), m_supportsMultiplication(false), m_hasBREAK(false),
- m_hasTinyEncoding(false), m_hasMemMappedGPR(false),
+ m_hasELPMX(false), m_hasPROGMEM(false), m_hasSPM(false), m_hasSPMX(false),
+ m_hasDES(false), m_supportsRMW(false), m_supportsMultiplication(false),
+ m_hasBREAK(false), m_hasTinyEncoding(false), m_hasMemMappedGPR(false),
m_FeatureSetDummy(false),
TLInfo(TM, initializeSubtargetDependencies(CPU, FS, TM)) {
More information about the llvm-commits
mailing list