On 1/24/13 8:57 AM, Jan Smets wrote:
A few notes though * It would be nice if there was an option to obfuscate the names.
Could you elaborate on this a little bit?
* It would be nice if some structured could be reduced further by making assumptions of the width of the types, like int, etc Or just by grouping identical types (so int x, int y, int z,... where all vars are unused could be written as int unused[n])
Hmm, we have passes which handle these cases, e.g. replacing struct with simple type like int and grouping "int x; int y;" into "int x, y;". Do you have some test case on which these transformations fail? I will give it a look.
Thanks for the suggestions! - Yang
