[llvm-commits] [llvm] r61338 - /llvm/trunk/include/llvm/Target/TargetInstrDesc.h
Dan Gohman
gohman at apple.com
Mon Dec 22 11:44:43 PST 2008
Author: djg
Date: Mon Dec 22 13:44:39 2008
New Revision: 61338
URL: http://llvm.org/viewvc/llvm-project?rev=61338&view=rev
Log:
Clarify a comment.
Modified:
llvm/trunk/include/llvm/Target/TargetInstrDesc.h
Modified: llvm/trunk/include/llvm/Target/TargetInstrDesc.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetInstrDesc.h?rev=61338&r1=61337&r2=61338&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetInstrDesc.h (original)
+++ llvm/trunk/include/llvm/Target/TargetInstrDesc.h Mon Dec 22 13:44:39 2008
@@ -159,7 +159,8 @@
/// 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;
}
More information about the llvm-commits
mailing list