Nathan Lanza

Results 25 comments of Nathan Lanza

As far as I can tell this shouldn't be an issue unless some of the APIs are deprecated. fishhook still works even if you call it after the symbol you...

> I did a bit of testing. The issue seems to be with when a buffer is added to the buffer list and not loaded. When nvim_win_set_buf is called on...

I pushed a rebase just now. Should be good to go :p

> Hi, I am a new to mlir, I would like to take this issue. Feel free to take it, I'll assign it to you for now :p

Hey @keryell! We rebase because upstream LLVM doesn't use merges. The goal is to, at some point, be integrated into the main LLVM tree. The rebase cadence is rather discontinuous...

For `x86_64-unknown-linux-gnu` Clang emits function type usages of `bool` to LLVM as an `i1` but within the function emits `i8`s. So for example ``` bool foo(bool a) { return a;...

> Using the bool variable a, will try to allocate an int8 type instruction. Yup, that we know is wrong. And you seemed to have found out why by looking...

This is actually a bit uglier than I thought. Clang shoehorns the bool to an i8 when it needs it and an i1 otherwise. So our representation has to keep...

FWIW, our goal for the cir dialect is to eventually get closer in functionality to the MLIR dialects. e.g. to put it simply we would heuristically like something similar to...

Any thoughts on this topic? gdb now supports the DAP (along with many other debuggers).