1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

stop using arg_back

llvm-svn: 20598
This commit is contained in:
Chris Lattner 2005-03-15 04:59:17 +00:00
parent 4b688a1c70
commit 33f53a1f4f

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: