Veikka Tuominen

Results 65 issues of Veikka Tuominen

Three test cases are skipped on Windows because they cause the test runner to get stuck. 7f9e777cc5351c40a90187aa0ac212e54fed666c

I suspect that the performance hit caused by the interner is greater than any memory savings from it. One way to test this would be to disable the hashing in...

enhancement

I think store is too vague and that map better describes what the type actually does.

enhancement

`a` and `b` should be equivalent: ```c extern int a; int a = 0; extern int b; int b; ``` ``` variable: 'int' extern name: a definition: 0x7 variable: 'int'...

bug

```c void foo(void) { int b = ({ foo: goto foo; // ok 1; }); goto foo; // not ok } ```

bug