[llvm-commits] [llvm] r150836 - /llvm/trunk/lib/MC/MCDisassembler/Disassembler.cpp

Kevin Enderby enderby at apple.com
Fri Feb 17 11:26:01 PST 2012


Author: enderby
Date: Fri Feb 17 13:26:00 2012
New Revision: 150836

URL: http://llvm.org/viewvc/llvm-project?rev=150836&view=rev
Log:
Fix typo in comment ldopen() -> dlopen().

Modified:
    llvm/trunk/lib/MC/MCDisassembler/Disassembler.cpp

Modified: llvm/trunk/lib/MC/MCDisassembler/Disassembler.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCDisassembler/Disassembler.cpp?rev=150836&r1=150835&r2=150836&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCDisassembler/Disassembler.cpp (original)
+++ llvm/trunk/lib/MC/MCDisassembler/Disassembler.cpp Fri Feb 17 13:26:00 2012
@@ -40,7 +40,7 @@
   // FIXME: Clients are responsible for initializing the targets. And this
   // would be done by calling routines in "llvm-c/Target.h" which are static
   // line functions. But the current use of LLVMCreateDisasm() is to dynamically
-  // load libLTO with ldopen() and then lookup the symbols using dlsym().
+  // load libLTO with dlopen() and then lookup the symbols using dlsym().
   // And since these initialize routines are static that does not work which
   // is why the call to them in this 'C' library API was added back.
   llvm::InitializeAllTargetInfos();





More information about the llvm-commits mailing list