aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm-c
diff options
context:
space:
mode:
authorErick Tryzelaar <idadesub@users.sourceforge.net>2010-02-16 03:45:23 +0000
committerErick Tryzelaar <idadesub@users.sourceforge.net>2010-02-16 03:45:23 +0000
commitec52b27ad8e773d8e8bc9d2b95daf760cbbe5843 (patch)
treebcd21b897d3295dc7ebd7a350978ee78032c9922 /include/llvm-c
parentdaceb64f968a6bde4625d8fc21b99c29d115434e (diff)
downloadexternal_llvm-ec52b27ad8e773d8e8bc9d2b95daf760cbbe5843.zip
external_llvm-ec52b27ad8e773d8e8bc9d2b95daf760cbbe5843.tar.gz
external_llvm-ec52b27ad8e773d8e8bc9d2b95daf760cbbe5843.tar.bz2
Fix a typo in an LLVMOpcode enum. LLVMTrunk -> LLVMTrunc.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96324 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c')
-rw-r--r--include/llvm-c/Core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index 133829e..063ab91 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -161,7 +161,7 @@ typedef enum {
LLVMGetElementPtr = 29,
/* Cast Operators */
- LLVMTrunk = 30,
+ LLVMTrunc = 30,
LLVMZExt = 31,
LLVMSExt = 32,
LLVMFPToUI = 33,