From 5c667608efe2a49727c996906b771853f694d246 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Mon, 4 May 2009 04:12:48 +0000 Subject: [PATCH] Remove unnecessary push_back (at least, I think it's unnecessary); hopefully, this fixes PR4144 without any regressions. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70823 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/CGStmt.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/CodeGen/CGStmt.cpp b/lib/CodeGen/CGStmt.cpp index 6874dc076b..eb7697d3b1 100644 --- a/lib/CodeGen/CGStmt.cpp +++ b/lib/CodeGen/CGStmt.cpp @@ -817,8 +817,6 @@ void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) { for (unsigned i = 0, e = S.getNumOutputs(); i != e; i++) { TargetInfo::ConstraintInfo &Info = OutputConstraintInfos[i]; - - OutputConstraintInfos.push_back(Info); // Simplify the output constraint. std::string OutputConstraint(S.getOutputConstraint(i));