[cfe-commits] r46751 - /cfe/trunk/CodeGen/CGStmt.cpp
Anders Carlsson
andersca at mac.com
Tue Feb 5 08:57:38 PST 2008
Author: andersca
Date: Tue Feb 5 10:57:38 2008
New Revision: 46751
URL: http://llvm.org/viewvc/llvm-project?rev=46751&view=rev
Log:
Append input argument to args vector.
Modified:
cfe/trunk/CodeGen/CGStmt.cpp
Modified: cfe/trunk/CodeGen/CGStmt.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/CodeGen/CGStmt.cpp?rev=46751&r1=46750&r2=46751&view=diff
==============================================================================
--- cfe/trunk/CodeGen/CGStmt.cpp (original)
+++ cfe/trunk/CodeGen/CGStmt.cpp Tue Feb 5 10:57:38 2008
@@ -626,6 +626,7 @@
Constraints += "=" + OutputConstraint;
} else {
ArgTypes.push_back(Dest.getAddress()->getType());
+ Args.push_back(Dest.getAddress());
if (i != 0)
Constraints += ',';
Constraints += '*';
More information about the cfe-commits
mailing list