On 07/19/2013 02:45 PM, Marek Polacek wrote:
/* This type represents an entry in the hash table. */ struct ubsan_typedesc { + /* This represents the type of a variable. */ tree type; + + /* This is the VAR_DECL of the type. */ tree decl; };
What I was looking for was something along the lines of "this hash table maps from a TYPE to a ubsan type descriptor VAR_DECL for that type".
Jason