Displaying 4 results from an estimated 4 matches for "llvm_attribute_unused".
2020 Jun 04
2
pre-merge checks are switching to buildkite build system
...s: (clang-format.patch)
>
> diff --git clang/lib/Format/UnwrappedLineParser.cpp
> clang/lib/Format/UnwrappedLineParser.cpp
> index 9c25e107d44..b8da2c23b55 100644
> --- clang/lib/Format/UnwrappedLineParser.cpp
> +++ clang/lib/Format/UnwrappedLineParser.cpp
> @@ -2744 +2744,2 @@ LLVM_ATTRIBUTE_UNUSED static void printDebugInfo(const
> UnwrappedLine &Line,
> - llvm::dbgs() << I->Tok->Tok.getName() << "[" << "T=" <<
> I->Tok->getType()
> + llvm::dbgs() << I->Tok->Tok.getName() << "["
> +...
2020 Jun 03
3
pre-merge checks are switching to buildkite build system
Hello friends,
We are switching the pre-merge test build system from Jenkins to Buildkite.
That will give authors and reviewers more transparency on what's going on
during the build process. For now only members of "pre-merge beta testing"
[0] group are affected.
As usual, please tell us if something is off.
[0] https://reviews.llvm.org/project/view/78/
Kind regards,
Mikhail
2020 Sep 27
3
How to add a new clang-tidy module
Hi, all,
I am planning to add clang-tidy checkers for my company. How to add a new module for my company? Please help, thanks in advance.
I try to copy files from cert module, and rename cert to Misra, then add a rule named "m-0-1-1" by ./add_new_checker.py.
then I run ninja check-clang-tool, but my case is failed due to below error
Running ['clang-tidy',
2013 Feb 06
0
[LLVMdev] [llvm] r174463 - Initial support for DWARF CFI parsing and dumping in LLVM
...{
>> +}
>> +
>> +
>> +DWARFDebugFrame::~DWARFDebugFrame()
>> +{
>> + for (EntryVector::iterator I = Entries.begin(), E = Entries.end();
>> + I != E; ++I) {
>> + delete *I;
>> + }
>> +}
>> +
>> +
>> +static void LLVM_ATTRIBUTE_UNUSED dumpDataAux(DataExtractor Data,
>> + uint32_t Offset, int Length) {
>> + errs() << "DUMP: ";
>> + for (int i = 0; i < Length; ++i) {
>> + uint8_t c = Data.getU8(&Offset);
>> + errs().write_hex(...