benshi001 added inline comments.
Comment at: clang/lib/Driver/ToolChains/AVR.cpp:395
+
+unsigned GetMCUEEPROMSize(StringRef MCUName) {
+ for (const auto &MCU : MCUInfo)
Add three helper functions for the newly added fields.
CHANGES SINCE LAST ACTION
https://
benshi001 added inline comments.
Comment at: clang/lib/Driver/ToolChains/AVR.cpp:38
unsigned DataAddr;
+ unsigned FlashSize;
+ unsigned SRAMSize;
We need these information to correctly linking with lld.
Comment at: clang/lib/Driver/ToolCha
benshi001 updated this revision to Diff 431625.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D126282/new/
https://reviews.llvm.org/D126282
Files:
clang/lib/Driver/ToolChains/AVR.cpp
clang/test/Driver/avr-toolchain.c
Index: clang/test/Driver/avr-toolchain.c
==
benshi001 created this revision.
benshi001 added reviewers: aykevl, MaskRay.
Herald added subscribers: StephenFan, Jim, dylanmckay.
Herald added a project: All.
benshi001 requested review of this revision.
Herald added subscribers: cfe-commits, jacquesguan.
Herald added a project: clang.
Repositor