[PATCH] D19494: [ELF] Introduce --reproduce flag

Sean Silva via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 25 17:16:48 PDT 2016


silvas added a subscriber: silvas.

================
Comment at: ELF/Driver.cpp:259
@@ +258,3 @@
+  for (unsigned I = 1, E = Args.size(); I < E; ++I)
+    OS << " " << Args[I];
+  OS << "\n";
----------------
An argument might contain a space, so let's separate these by newlines instead.
(an argument can technically contain a newline but I think that's sufficiently rare that we don't need to worry about that in a first patch.)


http://reviews.llvm.org/D19494





More information about the llvm-commits mailing list