From 0eaf5a503e291cfd6d3ad27b6cc3956be2d4b914 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'. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170713 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; -- 2.34.1