Alias Analysis in LLVM

家住魔仙堡 提交于 2019-12-04 10:59:55

The default alias analysis method from the AA group is basicaa, which always return "may alias". Try specifying an AA method (--globalsmodref-aa, -scev-aa,..) instead of letting opt use the default.

Something like this: opt -globalsmodref-aa -your_pass ...

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!