This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[tree-ssa]: INDIRECT_VAR patch badly breaks PTA


Your INDIRECT_REF patch has badly broken PTA, and i'm not sure how to fix
it.

You now ask PTA about aliasing between pointers and memory tag variables
(IE variables that don't actually exist in the function).
Because they don't really exist in the function, PTA has no idea
about the variable, and aborts (as it should, since it should have
seen every variable you could query about)

Queries to PTA should be about a pointer and a variable, not a pointer and
a fake variable.

--Dan


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]