This change makes it possible to load plugins by passing extra clang
compiler arguments to libclang's clang_parseTranslation entry point.
Example: -Xclang -load -Xclang $LLVM_ROOT/lib/ClangLazy.so -Xclang
-add-plugin -Xclang clang-lazy
This makes it possible to introduce additional diagnostics, which can
then be shown by IDEs
See discussion on cfe-dev: http://lists.llvm.org/pipermail/cfe-dev/2014-October/039380.html
Original patch by Stefan Kemnitz <kemnitz.stefan at gmail.com>