Nathan Lanza

Results 25 issues of Nathan Lanza

[coc.nvim](https://github.com/neoclide/coc.nvim) is a popular alternative to the packaged LSP for neovim. It offers a standard API to query the language server as you'd expect. [ccls's own documentation](https://github.com/MaskRay/ccls/wiki/coc.nvim) explains how one...

My work machine is an AMD Epyc 9634 with 166 threads. While indexing an LLVM build with clang and mlir enabled and ~10k items to be indexed, ccls often hovers...

This is currently hackily worked around via https://github.com/llvm/clangir/commit/e5dd626028d1dd40a59e518087882354ad259565.

https://github.com/llvm/clangir/commit/422ddbb6a4db7c8e85fdf4b847ef7794e9b90cef I didn't really look at why this was happening, just wanted to hammer out all the rebase failures. @sitio-couto could you take a look?

https://github.com/llvm/clangir/commit/9ea95d4ca811435dc77eaf270bd40d9cfccbe408 The rebase caused clang to emit sized delete instead.

The following tests fail due to new syntax changes invalidating the `...` in `cir.func @func(%arg0: !s32i, ...)`: * Lowering/variadics.cir * Lowering/call.cir * Lowering/hello.cir * IR/func.cir * Lowering/func.cir * IR/invalid.cir The...

rebase-debt

Move LP into CIRGen and give it a handle on the CIRGenBuilderTy.

Support static local variable. Emit the initialization code into the ctor region of the GlobalOp that represents the static local. During LoweringPrepare expand that ctor region into the guardAcquire/release walk....