X86: fix comment
authorSaleem Abdulrasool <compnerd@compnerd.org>
Mon, 30 Jun 2014 03:11:18 +0000 (03:11 +0000)
committerSaleem Abdulrasool <compnerd@compnerd.org>
Mon, 30 Jun 2014 03:11:18 +0000 (03:11 +0000)
Fix a comment typo `DbgLocLImport` instead of `DLLImport`.

llvm-svn: 212012

llvm/lib/Target/X86/X86FastISel.cpp

index 8ec9f59..d9f8967 100644 (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;