Replies: 2 comments
-
The removal of the |
Beta Was this translation helpful? Give feedback.
-
Thanx tons for register removal, I was on the same course as @JohnoKing using -Dregister= having variable optimised out at -O0 was super anoying. Regarding return() I am more reserved, all my project do used return() because it does't hurt, and allow some hacks like insrtumenting return's occurences, do at_return() things, etc... specially interesting on legacy code, with big spaghetti function and a lot of return points... hacking may define a macro return() (log stuff etc...) |
Beta Was this translation helpful? Give feedback.
-
A few of the archaisms in the code style finally got on my nerves, particularly because they were used so inconsistently. See 427ea54. As of now the code uses standard
NULL
pointers instead ofNIL(type*)
,(type*)0
orNiL
, andreturn foo;
instead ofreturn(foo);
. I've also eliminated theregister
keyword.ping @JohnoKing, @hyenias
Beta Was this translation helpful? Give feedback.
All reactions