From: Tanya Lattner Date: Fri, 30 May 2003 15:53:50 +0000 (+0000) Subject: Sorry, correcting small typo. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7cf322f51bdacadd7d1ab8ba8b3ef69d5bc95df7;p=oota-llvm.git Sorry, correcting small typo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6433 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Transforms/Utils/Cloning.h b/include/llvm/Transforms/Utils/Cloning.h index 7fb106bc819..f6e62d9566b 100644 --- a/include/llvm/Transforms/Utils/Cloning.h +++ b/include/llvm/Transforms/Utils/Cloning.h @@ -96,6 +96,6 @@ bool InlineFunction(CallInst *C); /// nodes, copies the basic blocks, remaps variables, and returns a new vector /// of basic blocks (the cloned trace). /// -std::vector cloneTrace(std::vector &origTrace); +std::vector CloneTrace(std::vector &origTrace); #endif