From fbd8cc09269d6c7c5ca615a4757e41899a18283f Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Sat, 17 May 2014 19:57:46 +0000 Subject: Reduce abuse of default values in the GlobalAlias constructor. This is in preparation for adding an optional offset. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209073 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Linker/LinkModules.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib/Linker') diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp index cf49d3fd55..518b681046 100644 --- a/lib/Linker/LinkModules.cpp +++ b/lib/Linker/LinkModules.cpp @@ -922,9 +922,8 @@ bool ModuleLinker::linkAliasProto(GlobalAlias *SGA) { // If there is no linkage to be performed or we're linking from the source, // bring over SGA. auto *PTy = cast(TypeMap.get(SGA->getType())); - auto *NewDA = - new GlobalAlias(PTy->getElementType(), SGA->getLinkage(), SGA->getName(), - /*aliasee*/ nullptr, DstM, PTy->getAddressSpace()); + auto *NewDA = new GlobalAlias(PTy->getElementType(), PTy->getAddressSpace(), + SGA->getLinkage(), SGA->getName(), DstM); copyGVAttributes(NewDA, SGA); if (NewVisibility) NewDA->setVisibility(*NewVisibility); -- cgit v1.2.3