aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Extensions/Extensions.cpp
AgeCommit message (Collapse)AuthorFilesLines
2020-09-08Remove unused variable(s)David Blaikie1-1/+1
2020-09-08Provide anchor for compiler extensionsSerge Guelton1-0/+15
This patch is cherry-picked from 04b0a4e22e3b4549f9d241f8a9f37eebecb62a31, and amended to prevent an undefined reference to `llvm::EnableABIBreakingChecks'
2020-04-24Update compiler extension integration into the build systemserge-sans-paille1-0/+0
The approach here is to create a new (empty) component, `Extensions', where all statically compiled extensions dynamically register their dependencies. That way we're more natively compatible with LLVMBuild and llvm-config. Fixes: https://bugs.llvm.org/show_bug.cgi?id=44870 Differential Revision: https://reviews.llvm.org/D78192