[PATCH] D40115: Driver: remove `SupportsObjCGC`

2017-11-18 Thread Saleem Abdulrasool via Phabricator via cfe-commits
compnerd closed this revision. compnerd added a comment. SVN r318609 Repository: rL LLVM https://reviews.llvm.org/D40115 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[PATCH] D40115: Driver: remove `SupportsObjCGC`

2017-11-16 Thread John McCall via Phabricator via cfe-commits
rjmccall added a comment. This isn't changing the actual driver interface in any way, it's just dead-code removal. Seems fine to me. Repository: rL LLVM https://reviews.llvm.org/D40115 ___ cfe-commits mailing list cfe-commits@lists.llvm.org

[PATCH] D40115: Driver: remove `SupportsObjCGC`

2017-11-15 Thread Saleem Abdulrasool via Phabricator via cfe-commits
compnerd created this revision. Herald added subscribers: aheejin, jgravelle-google, sbc100, dschuff, jfb. This option is not used in the frontend. Remove the method. Repository: rL LLVM https://reviews.llvm.org/D40115 Files: include/clang/Driver/ToolChain.h

[PATCH] D40115: Driver: remove `SupportsObjCGC`

2017-11-15 Thread Saleem Abdulrasool via Phabricator via cfe-commits
compnerd added a comment. @rjmccall this is quite a straightforward change, just not sure if there is some use for this that I cant think of off the top of my head to preserve this. Repository: rL LLVM https://reviews.llvm.org/D40115 ___