From cad3ab611ebd3bee3ce6395d649640047f904cde Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Tue, 5 Feb 2008 16:57:38 +0000 Subject: [PATCH] Append input argument to args vector. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46751 91177308-0d34-0410-b5e6-96231b3b80d8 --- CodeGen/CGStmt.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/CodeGen/CGStmt.cpp b/CodeGen/CGStmt.cpp index 77427fb63c..6393d1da97 100644 --- a/CodeGen/CGStmt.cpp +++ b/CodeGen/CGStmt.cpp @@ -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 += '*'; -- 2.40.0