From: Jim Grosbach Date: Thu, 20 Dec 2012 18:09:48 +0000 (+0000) Subject: Fix inadvertant delete of 'has'. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0eaf5a503e291cfd6d3ad27b6cc3956be2d4b914;p=oota-llvm.git Fix inadvertant delete of 'has'. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170713 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/MC/MCInstrDesc.h b/include/llvm/MC/MCInstrDesc.h index bc861cb130a..cb87641daad 100644 --- a/include/llvm/MC/MCInstrDesc.h +++ b/include/llvm/MC/MCInstrDesc.h @@ -471,7 +471,7 @@ public: return ImplicitUses; } - /// \brief Return the number of implicit uses this instruction + /// \brief Return the number of implicit uses this instruction has. unsigned getNumImplicitUses() const { if (ImplicitUses == 0) return 0; unsigned i = 0;