From eb69732d56f7e581bf648df9bf1352d513913df6 Mon Sep 17 00:00:00 2001 From: Jay Foad Date: Thu, 28 Apr 2011 09:12:47 +0000 Subject: [PATCH] Fix typos in comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130396 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Pass.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Pass.h b/include/llvm/Pass.h index 1de47820212..04dd8b60547 100644 --- a/include/llvm/Pass.h +++ b/include/llvm/Pass.h @@ -114,7 +114,7 @@ public: void dump() const; // dump - Print to stderr. /// createPrinterPass - Get a Pass appropriate to print the IR this - /// pass operates one (Module, Function or MachineFunction). + /// pass operates on (Module, Function or MachineFunction). virtual Pass *createPrinterPass(raw_ostream &O, const std::string &Banner) const = 0; @@ -320,7 +320,7 @@ class BasicBlockPass : public Pass { public: explicit BasicBlockPass(char &pid) : Pass(PT_BasicBlock, pid) {} - /// createPrinterPass - Get a function printer pass. + /// createPrinterPass - Get a basic block printer pass. Pass *createPrinterPass(raw_ostream &O, const std::string &Banner) const; /// doInitialization - Virtual method overridden by subclasses to do -- 2.34.1