diff options
author | Alex Denisov <1101.debian@gmail.com> | 2018-11-02 09:57:24 +0000 |
---|---|---|
committer | Alex Denisov <1101.debian@gmail.com> | 2018-11-02 09:57:24 +0000 |
commit | 31d012eb2f2d839c0e37bf65bb868441b90b3e33 (patch) | |
tree | e96019098161adaa9c7dbe7bbaad2a621b670387 /llvm/include/llvm-c/ExecutionEngine.h | |
parent | 45a3ca7be7f2edf006ce2da66360483ee28b54b1 (diff) | |
download | bcm5719-llvm-31d012eb2f2d839c0e37bf65bb868441b90b3e33.tar.gz bcm5719-llvm-31d012eb2f2d839c0e37bf65bb868441b90b3e33.zip |
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
llvm-svn: 345960
Diffstat (limited to 'llvm/include/llvm-c/ExecutionEngine.h')
-rw-r--r-- | llvm/include/llvm-c/ExecutionEngine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm-c/ExecutionEngine.h b/llvm/include/llvm-c/ExecutionEngine.h index 49ae6fee45f..e8ebef9ab15 100644 --- a/llvm/include/llvm-c/ExecutionEngine.h +++ b/llvm/include/llvm-c/ExecutionEngine.h @@ -186,7 +186,7 @@ void LLVMDisposeMCJITMemoryManager(LLVMMCJITMemoryManagerRef MM); LLVMJITEventListenerRef LLVMCreateGDBRegistrationListener(void); LLVMJITEventListenerRef LLVMCreateIntelJITEventListener(void); -LLVMJITEventListenerRef LLVMCreateOprofileJITEventListener(void); +LLVMJITEventListenerRef LLVMCreateOProfileJITEventListener(void); LLVMJITEventListenerRef LLVMCreatePerfJITEventListener(void); /** |