Home
last modified time | relevance | path

Searched refs:OrigA (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DIndirectionUtils.cpp340 GlobalAlias* cloneGlobalAliasDecl(Module &Dst, const GlobalAlias &OrigA, in cloneGlobalAliasDecl() argument
342 assert(OrigA.getAliasee() && "Original alias doesn't have an aliasee?"); in cloneGlobalAliasDecl()
343 auto *NewA = GlobalAlias::create(OrigA.getValueType(), in cloneGlobalAliasDecl()
344 OrigA.getType()->getPointerAddressSpace(), in cloneGlobalAliasDecl()
345 OrigA.getLinkage(), OrigA.getName(), &Dst); in cloneGlobalAliasDecl()
346 NewA->copyAttributesFrom(&OrigA); in cloneGlobalAliasDecl()
347 VMap[&OrigA] = NewA; in cloneGlobalAliasDecl()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DIndirectionUtils.h533 GlobalAlias *cloneGlobalAliasDecl(Module &Dst, const GlobalAlias &OrigA,