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:
Chris Lattner 2001-07-28 17:52:35 +00:00
parent 36e4b8aec4
commit 3868521e22

View File

@ -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