Comment #0 by peter.alexander.au — 2018-11-07T19:47:09Z
BasicType references TypeVector, but TypeVector is undefined (apart from the ABI definition, which is unrelated).
I'm guessing this is supposed to refer to the vector extensions? Perhaps the following rule will suffice:
TypeVector:
'__vector' '(' Type ')'
Comment #1 by b2.temp — 2018-11-20T15:21:09Z
dparse was affected by this missing rule.
It's actually:
TypeVector:
'__vector'
'__vector' '(' Type ')'
because things like if `(is(T == __vector))` are valid.