Fixed comment width, changed arg to be const, fixed indentation, removed unnecessary includes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6476 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tanya Lattner
2003-05-31 20:01:37 +00:00
parent 39698a5e55
commit 658c5bcdb2
2 changed files with 11 additions and 13 deletions

View File

@@ -92,10 +92,10 @@ void CloneFunctionInto(Function *NewFunc, const Function *OldFunc,
bool InlineFunction(CallInst *C);
/// CloneTrace - Returns a copy of the specified trace. It removes internal phi
/// nodes, copies the basic blocks, remaps variables, and returns a new vector
/// of basic blocks (the cloned trace).
///
std::vector<BasicBlock *> CloneTrace(std::vector<BasicBlock*> &origTrace);
/// CloneTrace - Returns a copy of the specified trace.
/// It takes a vector of basic blocks clones the basic blocks, removes internal
/// phi nodes, adds it to the same function as the original (although there is
/// no jump to it) and returns the new vector of basic blocks.
std::vector<BasicBlock *> CloneTrace(const std::vector<BasicBlock*> &origTrace);
#endif