Home | History | Annotate | Download | only in IPO

Lines Matching defs:Aliasee

3163   // If the aliasee has internal linkage, give it the name and linkage
3169 Constant *Aliasee = GA.getAliasee();
3170 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
3175 // aliasee. This check also ensures that it is safe to replace the section
3176 // and other attributes of the aliasee with those of the alias.
3199 // If the aliasee may change at link time, nothing can be done - bail out.
3203 Constant *Aliasee = J->getAliasee();
3204 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts());
3207 // Make all users of the alias use the aliasee instead.
3212 J->replaceAllUsesWith(Aliasee);
3217 // Give the aliasee the name, linkage and other attributes of the alias.