stop using arg_back

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20598 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-03-15 04:59:17 +00:00
parent e4d5c441e0
commit c5e7df1d60
2 changed files with 2 additions and 2 deletions

View File

@ -1472,7 +1472,7 @@ void CWriter::visitCallInst(CallInst &I) {
<< I.getParent()->getParent()->getName() << "'!\n";
abort();
}
writeOperand(&I.getParent()->getParent()->arg_back());
writeOperand(--I.getParent()->getParent()->arg_end());
Out << ')';
return;
case Intrinsic::vaend:

View File

@ -1472,7 +1472,7 @@ void CWriter::visitCallInst(CallInst &I) {
<< I.getParent()->getParent()->getName() << "'!\n";
abort();
}
writeOperand(&I.getParent()->getParent()->arg_back());
writeOperand(--I.getParent()->getParent()->arg_end());
Out << ')';
return;
case Intrinsic::vaend: