[PATCH] D24926: Added support of configuration files

Hal Finkel via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 28 16:27:00 PST 2017


hfinkel added inline comments.


================
Comment at: lib/Support/CommandLine.cpp:716
+      if (Src[I] == '\n')
+        continue; // Ignore backlash followed by '\n'.
+      if (Src[I] == '\r' && I + 1 < E && Src[I + 1] == '\n') {
----------------
This seems like a breaking change. Can you add a parameter to control this so that this only happens when called from `cl::tokenizeConfigFile`.


https://reviews.llvm.org/D24926





More information about the llvm-commits mailing list