From: Bill Wendling Date: Mon, 22 Dec 2008 22:32:22 +0000 (+0000) Subject: Comment clean-ups. No functionality change. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=30788b828a6101c6b20bedc59609dd5ce907a845;p=oota-llvm.git Comment clean-ups. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61354 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp index 6087fd5ae9c..cd2dcf53d40 100644 --- a/lib/Transforms/Scalar/GVN.cpp +++ b/lib/Transforms/Scalar/GVN.cpp @@ -666,7 +666,7 @@ void ValueTable::verifyRemoved(const Value *V) const { } //===----------------------------------------------------------------------===// -// GVN Pass +// GVN Pass //===----------------------------------------------------------------------===// namespace { @@ -1353,9 +1353,7 @@ bool GVN::processInstruction(Instruction *I, return false; } -// GVN::runOnFunction - This is the main transformation entry point for a -// function. -// +/// runOnFunction - This is the main transformation entry point for a function. bool GVN::runOnFunction(Function& F) { MD = &getAnalysis(); DT = &getAnalysis(); @@ -1602,7 +1600,7 @@ bool GVN::performPRE(Function& F) { return Changed || toSplit.size(); } -// iterateOnFunction - Executes one iteration of GVN +/// iterateOnFunction - Executes one iteration of GVN bool GVN::iterateOnFunction(Function &F) { cleanupGlobalSets();