Skip to content

Commit

Permalink
X86: fix comment
Browse files Browse the repository at this point in the history
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
  • Loading branch information
compnerd committed Jun 30, 2014
1 parent e8bd687 commit 2c25d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Target/X86/X86FastISel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 2c25d41

Please sign in to comment.