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)