From 2c25d41c214b83d137bbd5cfbed0d300d9a3e93a Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 30 Jun 2014 03:11:18 +0000 Subject: [PATCH] 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 --- lib/Target/X86/X86FastISel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;