[cfe-commits] r126143 - /cfe/trunk/lib/Sema/SemaStmt.cpp
Chris Lattner
sabre at nondot.org
Mon Feb 21 13:15:11 PST 2011
Author: lattner
Date: Mon Feb 21 15:15:10 2011
New Revision: 126143
URL: http://llvm.org/viewvc/llvm-project?rev=126143&view=rev
Log:
fix a comment.
Modified:
cfe/trunk/lib/Sema/SemaStmt.cpp
Modified: cfe/trunk/lib/Sema/SemaStmt.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaStmt.cpp?rev=126143&r1=126142&r2=126143&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaStmt.cpp (original)
+++ cfe/trunk/lib/Sema/SemaStmt.cpp Mon Feb 21 15:15:10 2011
@@ -1587,8 +1587,8 @@
}
}
- // If this is a reference to the input and if the input was the smaller
- // one, then we have to reject this asm.
+ // If this is a reference to the output and if it was the smaller one,
+ // then we have to reject this asm.
if (Piece.getOperandNo() == TiedTo) {
if (InSize > OutSize) {
SmallerValueMentioned = true;
More information about the cfe-commits
mailing list