From db032241871c023763071e9794de61bc07361693 Mon Sep 17 00:00:00 2001 From: Jim Grosbach Date: Thu, 20 Dec 2012 18:09:48 +0000 Subject: [PATCH] Fix inadvertant delete of 'has'. llvm-svn: 170713 --- include/llvm/MC/MCInstrDesc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;