From: Chris Lattner Date: Mon, 21 Feb 2011 21:15:10 +0000 (+0000) Subject: fix a comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4605c4f305dcf9a00baf120ba6e7c0a4f1e7bdc4;p=clang fix a comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126143 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaStmt.cpp b/lib/Sema/SemaStmt.cpp index 49efca8241..034b53ef25 100644 --- a/lib/Sema/SemaStmt.cpp +++ b/lib/Sema/SemaStmt.cpp @@ -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;