Christoffer Lerno
Christoffer Lerno
Ah that one is in 0.6.0
@cbuttner It should work ok in `dev` now.
Yes, that should work.
You can now test this on latest.
This is something I've been thinking about quite a bit. First of all let's consider the problem that noalias wants to solve. It's an optimization issue, where we can ensure...
Secondly, regarding `register`, there is a (rarely used) extension in GCC which allows you to pin a variable to a register. The lack of use of those extensions make me...
No, I meant that inline assembly helps certain usecases of `register`.
Regarding noalias, it mainly is used with cross function optimization. For a (C3) macro, this is usually trivially inferred by the compiler. But yes, a `@noalias` attribute is possible to...
Does it make sense to have pkg-config integrated in the build instead? The reason I ask is that arbitrary shell access like `"$(shell pkg-config --libs-only-l gtk+-3.0)"` suggests that it needs...
There is an experimental `@noalias` now.