mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Allow vararg method types with 0 fixed types
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@327 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
36e4b8aec4
commit
3868521e22
@ -213,7 +213,10 @@ const MethodType *MethodType::getMethodType(const Type *ReturnType,
|
||||
Name += ", ";
|
||||
Name += (*I)->getName();
|
||||
}
|
||||
if (IsVarArg) Name += ", ...";
|
||||
if (IsVarArg) {
|
||||
if (Params.size() > 1) Name += ", ";
|
||||
Name += "...";
|
||||
}
|
||||
Name += ")";
|
||||
|
||||
#if TEST_MERGE_TYPES
|
||||
|
Loading…
Reference in New Issue
Block a user