summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-08-24 23:21:59 +0000
committerEric Christopher <echristo@apple.com>2010-08-24 23:21:59 +0000
commit2cfcad97b766068a20f3715ed3b4beb9143f329f (patch)
treef665131d00ff055bd483ae3f8697ee50308f5218 /utils
parent7548fb37f1fe2187c97a1fb5bf1d44e9cd34698f (diff)
downloadllvm-2cfcad97b766068a20f3715ed3b4beb9143f329f.tar.gz
llvm-2cfcad97b766068a20f3715ed3b4beb9143f329f.tar.bz2
llvm-2cfcad97b766068a20f3715ed3b4beb9143f329f.tar.xz
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111996 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/TableGen/FastISelEmitter.cpp4
1 files changed, 2 insertions, 2 deletions
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)