aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CGStmt.cpp
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2009-05-04 04:12:48 +0000
committerEli Friedman <eli.friedman@gmail.com>2009-05-04 04:12:48 +0000
commit5c667608efe2a49727c996906b771853f694d246 (patch)
treec6780d4a75b53cf3e842dfcbdae74f4415fdf3d2 /lib/CodeGen/CGStmt.cpp
parent3715328021f69ed55e7b4cd65465fc761a8b6457 (diff)
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
Diffstat (limited to 'lib/CodeGen/CGStmt.cpp')
-rw-r--r--lib/CodeGen/CGStmt.cpp2
1 files changed, 0 insertions, 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));