rogfer01 added inline comments.
================
Comment at: lib/CodeGen/CodeGenModule.cpp:4222
+ std::string line;
+ while (std::getline(iss, s, ';')) {
+ if ((s.length() + line.length()) < 80) {
----------------
I wonder if this also works if the original compiler invokation included a ";"
? Something like (in a Unix like shell)
```
clang -DFOO="\";\"" -c file.c
```
https://reviews.llvm.org/D31814
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits