From: Eric Christopher Date: Tue, 24 Aug 2010 23:21:59 +0000 (+0000) Subject: Fix comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2cfcad97b766068a20f3715ed3b4beb9143f329f;p=oota-llvm.git Fix comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111996 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/FastISelEmitter.cpp b/utils/TableGen/FastISelEmitter.cpp index 6a909955abb..243208612d5 100644 --- a/utils/TableGen/FastISelEmitter.cpp +++ b/utils/TableGen/FastISelEmitter.cpp @@ -108,10 +108,10 @@ struct OperandsSignature { else return false; - // For now, require the register operands' register classes to all - // be the same. + // For now, this needs to be a register class of some sort. if (!RC) return false; + // For now, all the operands must have the same register class. if (DstRC) { if (DstRC != RC)