[llvm] r345960 - Fix a typo in a function name

Alex Denisov via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 2 02:57:24 PDT 2018


Author: alexdenisov
Date: Fri Nov  2 02:57:24 2018
New Revision: 345960

URL: http://llvm.org/viewvc/llvm-project?rev=345960&view=rev
Log:
Fix a typo in a function name

Declaration and definition have slightly different names with a typo in the
declaration, which leads to a link error.
See the following bug report for more details: https://bugs.llvm.org/show_bug.cgi?id=39523


Modified:
    llvm/trunk/include/llvm-c/ExecutionEngine.h

Modified: llvm/trunk/include/llvm-c/ExecutionEngine.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm-c/ExecutionEngine.h?rev=345960&r1=345959&r2=345960&view=diff
==============================================================================
--- llvm/trunk/include/llvm-c/ExecutionEngine.h (original)
+++ llvm/trunk/include/llvm-c/ExecutionEngine.h Fri Nov  2 02:57:24 2018
@@ -186,7 +186,7 @@ void LLVMDisposeMCJITMemoryManager(LLVMM
 
 LLVMJITEventListenerRef LLVMCreateGDBRegistrationListener(void);
 LLVMJITEventListenerRef LLVMCreateIntelJITEventListener(void);
-LLVMJITEventListenerRef LLVMCreateOprofileJITEventListener(void);
+LLVMJITEventListenerRef LLVMCreateOProfileJITEventListener(void);
 LLVMJITEventListenerRef LLVMCreatePerfJITEventListener(void);
 
 /**




More information about the llvm-commits mailing list