1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Split some long lines

llvm-svn: 4237
This commit is contained in:
Chris Lattner 2002-10-20 22:11:17 +00:00
parent 34f6a6514d
commit 4eec37a762

View File

@ -104,7 +104,8 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) {
// Start inlining all of the functions we can... some may not be
// inlinable if they are external...
//
std::vector<GlobalValue*> Callees(Call.getCalleeNode().getNode()->getGlobals());
std::vector<GlobalValue*> Callees =
Call.getCalleeNode().getNode()->getGlobals();
// Loop over the functions, inlining whatever we can...
for (unsigned c = 0; c != Callees.size(); ++c) {
@ -114,10 +115,10 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) {
if (&FI == &F) {
// Self recursion... simply link up the formal arguments with the
// actual arguments...
DEBUG(std::cerr << "\t[BU] Self Inlining: " << F.getName() << "\n");
if (Call.getReturnValueNode().getNode()) // Handle the return value if present...
// Handle the return value if present...
if (Call.getReturnValueNode().getNode())
Graph->getRetNode().mergeWith(Call.getReturnValueNode());
// Resolve the arguments in the call to the actual values...