summaryrefslogtreecommitdiffstats
path: root/clang/lib
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
commit33955dd28fadd4f259f95bdf7e807d285e05783e (patch)
tree86ce93aead74d23fb6997665dac49faaffaa529c /clang/lib
parent98ba964e5cb4a0f56711248484979cf2b96d5273 (diff)
downloadbcm5719-llvm-33955dd28fadd4f259f95bdf7e807d285e05783e.tar.gz
bcm5719-llvm-33955dd28fadd4f259f95bdf7e807d285e05783e.zip
Remove unnecessary push_back (at least, I think it's unnecessary);
hopefully, this fixes PR4144 without any regressions. llvm-svn: 70823
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/CodeGen/CGStmt.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp
index 6874dc076b6..eb7697d3b1b 100644
--- a/clang/lib/CodeGen/CGStmt.cpp
+++ b/clang/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));
OpenPOWER on IntegriCloud