Append input argument to args vector.

llvm-svn: 46751
This commit is contained in:
Anders Carlsson 2008-02-05 16:57:38 +00:00
parent 952a99592f
commit d0cd0d89a0
1 changed files with 1 additions and 0 deletions

View File

@ -626,6 +626,7 @@ void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
Constraints += "=" + OutputConstraint;
} else {
ArgTypes.push_back(Dest.getAddress()->getType());
Args.push_back(Dest.getAddress());
if (i != 0)
Constraints += ',';
Constraints += '*';