[PATCH] D22015: [ELF] Introduce a flag to parse response file according to windows rules
Rafael Ávila de Espíndola via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 6 12:57:19 PDT 2016
rafael added a comment.
Just another small issue.
================
Comment at: ELF/DriverUtils.cpp:61
@@ +60,3 @@
+ for (StringRef F : Argv)
+ if (F.startswith("--rsp-quoting"))
+ RspQuoting = F;
----------------
You probably want F.startswith("--rsp-quoting=") so that the following find('=') is guaranteed to find a '='.
http://reviews.llvm.org/D22015
More information about the llvm-commits
mailing list