Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix attiny322x identifier
  • Loading branch information
tomtor committed Jun 14, 2025
commit b086501ccd1c6cc270bc56117d05cce8b2512eaf
6 changes: 3 additions & 3 deletions clang/lib/Basic/Targets/AVR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,9 @@ static MCUInfo AVRMcus[] = {
{"attiny1624", "__AVR_ATtiny1624__", "103", 1},
{"attiny1626", "__AVR_ATtiny1626__", "103", 1},
{"attiny1627", "__AVR_ATtiny1627__", "103", 1},
{"attiny3224", "__AVR_ATtiny1624__", "103", 1},
{"attiny3226", "__AVR_ATtiny1626__", "103", 1},
{"attiny3227", "__AVR_ATtiny1627__", "103", 1},
{"attiny3224", "__AVR_ATtiny3224__", "103", 1},
{"attiny3226", "__AVR_ATtiny3226__", "103", 1},
{"attiny3227", "__AVR_ATtiny3227__", "103", 1},
{"atmega808", "__AVR_ATmega808__", "103", 1},
{"atmega809", "__AVR_ATmega809__", "103", 1},
{"atmega1608", "__AVR_ATmega1608__", "103", 1},
Expand Down