From: Saleem Abdulrasool Date: Mon, 30 Jun 2014 03:11:18 +0000 (+0000) Subject: X86: fix comment X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2c25d41c214b83d137bbd5cfbed0d300d9a3e93a;p=oota-llvm.git X86: fix comment Fix a comment typo `DbgLocLImport` instead of `DLLImport`. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212012 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86FastISel.cpp b/lib/Target/X86/X86FastISel.cpp index 8ec9f595699..d9f8967dbf0 100644 --- a/lib/Target/X86/X86FastISel.cpp +++ b/lib/Target/X86/X86FastISel.cpp @@ -881,7 +881,7 @@ bool X86FastISel::X86SelectCallAddress(const Value *V, X86AddressMode &AM) { (AM.Base.Reg != 0 || AM.IndexReg != 0)) return false; - // Can't handle DbgLocLImport. + // Can't handle DLL Import. if (GV->hasDLLImportStorageClass()) return false;