From: Lauro Ramos Venancio Date: Thu, 28 Jun 2007 20:06:38 +0000 (+0000) Subject: Fix a bug in my previous patch. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=00d8a84b4432bedc3050f012454cbf6ef1b05461;p=oota-llvm.git Fix a bug in my previous patch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37778 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp index c69010a8196..462a4b7c662 100644 --- a/lib/Linker/LinkModules.cpp +++ b/lib/Linker/LinkModules.cpp @@ -578,9 +578,8 @@ static bool LinkAlias(Module *Dest, const Module *Src, std::string *Err) { // FIXME: we should handle the bitcast alias. assert(NewAliased && "Can't find the aliased GV."); - GlobalAlias *NewGA = new GlobalAlias(GA->getType()->getElementType(), - GA->getLinkage(), GA->getName(), - NewAliased, Dest); + GlobalAlias *NewGA = new GlobalAlias(GA->getType(), GA->getLinkage(), + GA->getName(), NewAliased, Dest); CopyGVAttributes(NewGA, GA); } return false;