[llvm] r212012 - X86: fix comment

Saleem Abdulrasool compnerd at compnerd.org
Sun Jun 29 20:11:18 PDT 2014


Author: compnerd
Date: Sun Jun 29 22:11:18 2014
New Revision: 212012

URL: http://llvm.org/viewvc/llvm-project?rev=212012&view=rev
Log:
X86: fix comment

Fix a comment typo `DbgLocLImport` instead of `DLLImport`.

Modified:
    llvm/trunk/lib/Target/X86/X86FastISel.cpp

Modified: llvm/trunk/lib/Target/X86/X86FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86FastISel.cpp?rev=212012&r1=212011&r2=212012&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86FastISel.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86FastISel.cpp Sun Jun 29 22:11:18 2014
@@ -881,7 +881,7 @@ bool X86FastISel::X86SelectCallAddress(c
         (AM.Base.Reg != 0 || AM.IndexReg != 0))
       return false;
 
-    // Can't handle DbgLocLImport.
+    // Can't handle DLL Import.
     if (GV->hasDLLImportStorageClass())
       return false;
 





More information about the llvm-commits mailing list