Skip to content

Commit a8673b7

Browse files
committed
[AVR] Add FeatureEIJMPCALL to FamilyAVR6
This feature was probably missed when adding FamilyAVR6, but should definitely be there. I checked all four devices in the AVR6 family and they all support eijmp/eicall. Found while working on https://reviews.llvm.org/D137572. Differential Revision: https://reviews.llvm.org/D137573
1 parent 09ab9d4 commit a8673b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/AVR/AVRDevices.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def FamilyAVR5 : Family<"avr5",
184184

185185
def FamilyAVR51 : Family<"avr51", [FamilyAVR5, FeatureELPM, FeatureELPMX]>;
186186

187-
def FamilyAVR6 : Family<"avr6", [FamilyAVR51]>;
187+
def FamilyAVR6 : Family<"avr6", [FamilyAVR51, FeatureEIJMPCALL]>;
188188

189189
def FamilyTiny
190190
: Family<"avrtiny",

0 commit comments

Comments
 (0)