From 2cfcad97b766068a20f3715ed3b4beb9143f329f Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Tue, 24 Aug 2010 23:21:59 +0000 Subject: Fix comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111996 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/TableGen/FastISelEmitter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils') diff --git a/utils/TableGen/FastISelEmitter.cpp b/utils/TableGen/FastISelEmitter.cpp index 6a909955ab..243208612d 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) -- cgit v1.2.3