David Spickett
David Spickett
I should note, in your case you'll be searching for the `.td` file name to find what it is used to generate. Where the poster there had the `.inc` but...
Is this a "match" vs. "search" issue? If you have a look at python's re.match and re.search you'll see what I mean. Match goes from the start of the string...
I realised what's going on. When you ask for matches it's returning first the whole match and then any other matching groups within that match. ``` llvm::Regex re("(abc)(def)(ghi)"); llvm::SmallVector matches;...
Excited to see this progressing! Putting up the code first is fine, we can talk about testing on the review. Please add me as a reviewer, I am https://reviews.llvm.org/p/DavidSpickett/ on...
Off the top of my head, so your mileage may vary. Have a look at the AST clang makes for the example, some of the terms you see there will...
I don't know much about this corner of cmake unfortunately. > and fixed in https://reviews.llvm.org/D134637 Just to be sure, do you mean you applied that patch and it fixed your...
Sorry yes, this was for llvm. I got confused because it came up originally on a bot that builds flang which uses MLIR.
flang-trunk should be tracking llvm-project's `main` as far as I can tell, but it has been failing to build for months (though not long enough to still be a 15.x,...
Currently the compiler doesn't crash but it then times out around 40 minutes into the build every time. Likely due to flang's high RAM requirements. https://github.com/compiler-explorer/clang-builder/pull/57 lowers the parallelism to...
This can be closed, we now have flang-new built from `main` again: ``` flang-new version 18.0.0git (https://github.com/llvm/llvm-project.git b7355ee99ec63f44a6dc4f7dad9bb5a130bcc0eb) ```