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
This commit is contained in:
Saleem Abdulrasool 2014-06-30 03:11:18 +00:00
parent e8bd687156
commit 2c25d41c21

View File

@ -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;