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
diff --git a/lib/CodeGen/CGStmt.cpp b/lib/CodeGen/CGStmt.cpp
index 6874dc0..eb7697d 100644
--- a/lib/CodeGen/CGStmt.cpp
+++ b/lib/CodeGen/CGStmt.cpp
@@ -817,8 +817,6 @@
 
   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));