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`.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212012 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86FastISel.cpp

index 8ec9f595699c620647f308c0ce6bc86f6eca25d1..d9f8967dbf0c8cd781d6fdbf1077c2dfcf08937a 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;