From: Misha Brukman Date: Fri, 10 Oct 2003 17:38:31 +0000 (+0000) Subject: Use 'F' for Function instead of 'M'. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=50f7129324cf192e5c4f2f5ed0b9446596823d0d;p=oota-llvm.git Use 'F' for Function instead of 'M'. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9019 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/PassManager.h b/include/llvm/PassManager.h index 367809e5cce..64499ca8bd5 100644 --- a/include/llvm/PassManager.h +++ b/include/llvm/PassManager.h @@ -60,7 +60,7 @@ public: /// track of whether any of the passes modifies the function, and if /// so, return true. /// - bool run(Function &M); + bool run(Function &F); }; #endif