aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-12-22 19:44:39 +0000
committerDan Gohman <gohman@apple.com>2008-12-22 19:44:39 +0000
commitb5544940c17720f51a74fea9fba33f26fafe4819 (patch)
treec52ad16989639705e16107a35d453331fc513584 /include
parenta01ce0091ae4a5c584e61f3f6db12054d8f54cab (diff)
downloadexternal_llvm-b5544940c17720f51a74fea9fba33f26fafe4819.zip
external_llvm-b5544940c17720f51a74fea9fba33f26fafe4819.tar.gz
external_llvm-b5544940c17720f51a74fea9fba33f26fafe4819.tar.bz2
Clarify a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61338 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetInstrDesc.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetInstrDesc.h b/include/llvm/Target/TargetInstrDesc.h
index 02616af..8378206 100644
--- a/include/llvm/Target/TargetInstrDesc.h
+++ b/include/llvm/Target/TargetInstrDesc.h
@@ -159,7 +159,8 @@ public:
/// getNumDefs - Return the number of MachineOperands that are register
/// definitions. Register definitions always occur at the start of the
- /// machine operand list. This is the number of "outs" in the .td file.
+ /// machine operand list. This is the number of "outs" in the .td file,
+ /// and does not include implicit defs.
unsigned getNumDefs() const {
return NumDefs;
}