Fix inadvertant delete of 'has'.
authorJim Grosbach <grosbach@apple.com>
Thu, 20 Dec 2012 18:09:48 +0000 (18:09 +0000)
committerJim Grosbach <grosbach@apple.com>
Thu, 20 Dec 2012 18:09:48 +0000 (18:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170713 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCInstrDesc.h

index bc861cb130a7727868110ba52c05af0f6b8a198e..cb87641daad8ee03263b63b4ea166f50f29d80eb 100644 (file)
@@ -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;