mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-11 13:44:28 +00:00
don't access argument list of prototypes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36238 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7cc6dcf6e0
commit
8dcd2f1a5b
@ -970,13 +970,30 @@ void AssemblyWriter::printFunction(const Function *F) {
|
||||
// Loop over the arguments, printing them...
|
||||
|
||||
unsigned Idx = 1;
|
||||
for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
|
||||
I != E; ++I) {
|
||||
// Insert commas as we go... the first arg doesn't get a comma
|
||||
if (I != F->arg_begin()) Out << ", ";
|
||||
printArgument(I, (Attrs ? Attrs->getParamAttrs(Idx)
|
||||
: uint16_t(ParamAttr::None)));
|
||||
Idx++;
|
||||
if (!F->isDeclaration()) {
|
||||
// If this isn't a declaration, print the argument names as well.
|
||||
for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
|
||||
I != E; ++I) {
|
||||
// Insert commas as we go... the first arg doesn't get a comma
|
||||
if (I != F->arg_begin()) Out << ", ";
|
||||
printArgument(I, (Attrs ? Attrs->getParamAttrs(Idx)
|
||||
: uint16_t(ParamAttr::None)));
|
||||
Idx++;
|
||||
}
|
||||
} else {
|
||||
// Otherwise, print the types from the function type.
|
||||
for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
|
||||
// Insert commas as we go... the first arg doesn't get a comma
|
||||
if (i) Out << ", ";
|
||||
|
||||
// Output type...
|
||||
printType(FT->getParamType(i));
|
||||
|
||||
unsigned ArgAttrs = ParamAttr::None;
|
||||
if (Attrs) ArgAttrs = Attrs->getParamAttrs(i+1);
|
||||
if (ArgAttrs != ParamAttr::None)
|
||||
Out << ' ' << ParamAttrsList::getParamAttrsText(ArgAttrs);
|
||||
}
|
||||
}
|
||||
|
||||
// Finish printing arguments...
|
||||
|
Loading…
Reference in New Issue
Block a user