From: Jakob Stoklund Olesen Date: Thu, 7 Mar 2013 23:55:51 +0000 (+0000) Subject: Add a getPassName() method. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c9efaeb53b5b4b325fdb45767eacd7970ee629c5;p=oota-llvm.git Add a getPassName() method. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176669 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/EarlyIfConversion.cpp b/lib/CodeGen/EarlyIfConversion.cpp index fac207e3b30..6c679b22282 100644 --- a/lib/CodeGen/EarlyIfConversion.cpp +++ b/lib/CodeGen/EarlyIfConversion.cpp @@ -593,6 +593,7 @@ public: EarlyIfConverter() : MachineFunctionPass(ID) {} void getAnalysisUsage(AnalysisUsage &AU) const; bool runOnMachineFunction(MachineFunction &MF); + const char *getPassName() const { return "Early If-Conversion"; } private: bool tryConvertIf(MachineBasicBlock*);