summaryrefslogtreecommitdiff
path: root/include/llvm-c/Core.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-09-28 21:51:41 +0000
committerDan Gohman <gohman@apple.com>2009-09-28 21:51:41 +0000
commitd0c5a292aaf4d9d69c77fe059bfcbab0496d5f2c (patch)
tree59cfff92d13adf1d38734685acb154b568b572f4 /include/llvm-c/Core.h
parente30e678865b8dc1b69ef1c26e7567ffd1300553c (diff)
downloadllvm-d0c5a292aaf4d9d69c77fe059bfcbab0496d5f2c.tar.gz
llvm-d0c5a292aaf4d9d69c77fe059bfcbab0496d5f2c.tar.bz2
llvm-d0c5a292aaf4d9d69c77fe059bfcbab0496d5f2c.tar.xz
Add C API calls for building FNeg operations. Patch by KS Sreeram!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83021 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c/Core.h')
-rw-r--r--include/llvm-c/Core.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index 40696e0ace..a44afcd220 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -736,6 +736,7 @@ LLVMValueRef LLVMBuildOr(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
LLVMValueRef LLVMBuildXor(LLVMBuilderRef, LLVMValueRef LHS, LLVMValueRef RHS,
const char *Name);
LLVMValueRef LLVMBuildNeg(LLVMBuilderRef, LLVMValueRef V, const char *Name);
+LLVMValueRef LLVMBuildFNeg(LLVMBuilderRef, LLVMValueRef V, const char *Name);
LLVMValueRef LLVMBuildNot(LLVMBuilderRef, LLVMValueRef V, const char *Name);
/* Memory */