summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCInstrDesc.h
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2012-12-20 18:09:48 +0000
committerJim Grosbach <grosbach@apple.com>2012-12-20 18:09:48 +0000
commit0eaf5a503e291cfd6d3ad27b6cc3956be2d4b914 (patch)
treeafc35db69890c06a8bbda0cf7c2cf08c53ed7e43 /include/llvm/MC/MCInstrDesc.h
parent7f6ece8a93021fb42a5f2e42507c9b2681e32f32 (diff)
downloadllvm-0eaf5a503e291cfd6d3ad27b6cc3956be2d4b914.tar.gz
llvm-0eaf5a503e291cfd6d3ad27b6cc3956be2d4b914.tar.bz2
llvm-0eaf5a503e291cfd6d3ad27b6cc3956be2d4b914.tar.xz
Fix inadvertant delete of 'has'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170713 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCInstrDesc.h')
-rw-r--r--include/llvm/MC/MCInstrDesc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/MC/MCInstrDesc.h b/include/llvm/MC/MCInstrDesc.h
index bc861cb130..cb87641daa 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;