There was an error while loading. Please reload this page.
1 parent 01fc5db commit 46f8680Copy full SHA for 46f8680
1 file changed
lib/IRDec/ModuleLifter.cpp
@@ -71,6 +71,19 @@ class ModuleLifter {
71
)
72
);
73
attrs.push_back(attr);
74
+ } else {
75
+ auto *attr = astArena.create<ast::Attribute>(
76
+ ast::AttributeKind::NoManglingKind,
77
+ SourceLocation::invalid, nullptr
78
+ );
79
+ attrs.push_back(attr);
80
+ }
81
+ if (func.isVarArg()) {
82
83
+ ast::AttributeKind::CVariadicKind,
84
85
86
87
}
88
ast::AttributeList *attributes
89
= astArena.create<ast::AttributeList>(
0 commit comments