]> granicus.if.org Git - clang/commitdiff
fix a comment.
authorChris Lattner <sabre@nondot.org>
Mon, 21 Feb 2011 21:15:10 +0000 (21:15 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 21 Feb 2011 21:15:10 +0000 (21:15 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126143 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaStmt.cpp

index 49efca82412d9c9506a76e650662d430b6e92c52..034b53ef25f870da2fe555a891f946dbabc80e64 100644 (file)
@@ -1587,8 +1587,8 @@ StmtResult Sema::ActOnAsmStmt(SourceLocation AsmLoc,
         }
       }
 
-      // 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;