We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f459cfe commit 597accfCopy full SHA for 597accf
clang/lib/CodeGen/Targets/AVR.cpp
@@ -59,7 +59,7 @@ class AVRABIInfo : public DefaultABIInfo {
59
unsigned TySize = getContext().getTypeSize(Ty);
60
61
// An int8 type argument always costs two registers like an int16.
62
- if (TySize == 8 && NumRegs >= 2) {
+ if (TySize == 8 && NumRegs >= 2 && Ty->isIntegralOrEnumerationType()) {
63
NumRegs -= 2;
64
return ABIArgInfo::getExtend(Ty);
65
}
clang/test/CodeGen/avr/argument.c
@@ -114,3 +114,13 @@ struct s15 fooa(char a, char b) {
114
x.arr[1] = b;
115
return x;
116
117
+
118
+struct s8_t {
119
+ char a;
120
+};
121
122
+// AVR: define {{.*}} i8 @foob(i8 {{.*}})
123
+// TINY: define {{.*}} i8 @foob(i8 {{.*}})
124
+char foob(struct s8_t a) {
125
+ return a.a + 1;
126
+}
0 commit comments