diff options
author | Dale Johannesen <dalej@apple.com> | 2010-09-10 20:55:01 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2010-09-10 20:55:01 +0000 |
commit | baa5d045c90729268ae6d5d4f08551e28fafde34 (patch) | |
tree | d481d904308310f73c8212369cbcfe3f23ee7763 /llvm/bindings | |
parent | d1d6f2ca46ad7e21494373b73acee3a03ecf132d (diff) | |
download | bcm5719-llvm-baa5d045c90729268ae6d5d4f08551e28fafde34.tar.gz bcm5719-llvm-baa5d045c90729268ae6d5d4f08551e28fafde34.zip |
Add X86 MMX type to bitcode and Type.
(The Ada bindings probably need it too, but all the
obvious places to change say "do not edit this file".)
llvm-svn: 113618
Diffstat (limited to 'llvm/bindings')
-rw-r--r-- | llvm/bindings/ocaml/llvm/llvm_ocaml.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/bindings/ocaml/llvm/llvm_ocaml.c b/llvm/bindings/ocaml/llvm/llvm_ocaml.c index ef2e3d66629..ce6cf8ea79e 100644 --- a/llvm/bindings/ocaml/llvm/llvm_ocaml.c +++ b/llvm/bindings/ocaml/llvm/llvm_ocaml.c @@ -264,6 +264,11 @@ CAMLprim LLVMTypeRef llvm_ppc_fp128_type(LLVMContextRef Context) { return LLVMPPCFP128TypeInContext(Context); } +/* llcontext -> lltype */ +CAMLprim LLVMTypeRef llvm_x86mmx_type(LLVMContextRef Context) { + return LLVMX86MMXTypeInContext(Context); +} + /*--... Operations on function types .......................................--*/ /* lltype -> lltype array -> lltype */ |