From 401e2d3386219ac2e5cf734334fcbf99ccfc8634 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Fri, 10 Sep 2010 21:58:02 +0000 Subject: [PATCH] Add missing X86 MMX declarations. Hopefully fixes buildbot? git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113643 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm-c/Core.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h index 9ac1c9c54b3..148bc723419 100644 --- a/include/llvm-c/Core.h +++ b/include/llvm-c/Core.h @@ -409,10 +409,12 @@ unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy); LLVMTypeRef LLVMVoidTypeInContext(LLVMContextRef C); LLVMTypeRef LLVMLabelTypeInContext(LLVMContextRef C); LLVMTypeRef LLVMOpaqueTypeInContext(LLVMContextRef C); +LLVMTypeRef LLVMX86MMXTypeInContext(LLVMContextRef C); LLVMTypeRef LLVMVoidType(void); LLVMTypeRef LLVMLabelType(void); LLVMTypeRef LLVMOpaqueType(void); +LLVMTypeRef LLVMX86MMXType(void); /* Operations on type handles */ LLVMTypeHandleRef LLVMCreateTypeHandle(LLVMTypeRef PotentiallyAbstractTy); -- 2.34.1