From: Dan Gohman Date: Mon, 22 Dec 2008 19:44:39 +0000 (+0000) Subject: Clarify a comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b5544940c17720f51a74fea9fba33f26fafe4819;p=oota-llvm.git Clarify a comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61338 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetInstrDesc.h b/include/llvm/Target/TargetInstrDesc.h index 02616af5fcc..8378206bf1b 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; }