Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Two minor comments. Otherwise LGTM.
clang/include/clang/Frontend/CompilerInstance.h | ||
---|---|---|
223 | This could have a minimal doxygen comment now that it's part of the public interface. | |
clang/test/Interpreter/plugins.cpp | ||
6 | You could write the code interleaved with the check-lines below and then do: // RUN: cat %s | clang-repl | FileCheck %s Is there a good reason not to do so? |
clang/include/clang/Frontend/CompilerInstance.h | ||
---|---|---|
223 | I somewhat hesitate to make this interface public. It needs to be called at a very specific time during the construction of the compiler instance, however all this is true for many of the existing interfaces. Doxygen docs added. | |
clang/test/Interpreter/plugins.cpp | ||
6 | That saves me one quit command. Jokes aside, I had a weird problem when clang-repl processed the extra special chars in the RUN clauses. |
This could have a minimal doxygen comment now that it's part of the public interface.