From 2b48ef0450944c2c46633aec9baf6be835a3b503 Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Mon, 10 Mar 2008 22:33:22 +0000 Subject: [PATCH] Typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48176 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Linker/LinkModules.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp index ad6852dce6a..78cbf3efd2b 100644 --- a/lib/Linker/LinkModules.cpp +++ b/lib/Linker/LinkModules.cpp @@ -384,7 +384,7 @@ static bool GetLinkageResult(GlobalValue *Dest, GlobalValue *Src, LinkFromSrc = true; LT = Src->getLinkage(); } else if (Src->isDeclaration()) { - // If Src is external or if both Src & Drc are external.. Just link the + // If Src is external or if both Src & Dest are external.. Just link the // external globals, we aren't adding anything. if (Src->hasDLLImportLinkage()) { // If one of GVs has DLLImport linkage, result should be dllimport'ed.