diff options
author | Chris Lattner <sabre@nondot.org> | 2011-02-21 21:15:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-02-21 21:15:10 +0000 |
commit | 4605c4f305dcf9a00baf120ba6e7c0a4f1e7bdc4 (patch) | |
tree | fd3f487f798a324aa6ddbc1f9c0bd38acd01fc7a /lib/Sema/SemaStmt.cpp | |
parent | 9becaaeefa7e577fbf8368ca0e6890e1da0d73cd (diff) |
fix a comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@126143 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaStmt.cpp')
-rw-r--r-- | lib/Sema/SemaStmt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; |