search for: __gmpz_clear

Displaying 3 results from an estimated 3 matches for "__gmpz_clear".

2008 Jun 18
0
[LLVMdev] using dynamic libraries from bytecode?
On Jun 18, 2008, at 6:48 AM, Yaroslav Kavenchuk wrote: > Is it possible to use dynamic library (*.so *.dll) from bytecode? > If "yes" - how? dlopen? That's be one way. Also, most systems have shared libraries in /usr/lib and these routines are meant to be linked against and used. For example, on darwin, there sinf is resolved from a shared library, you declare it and
2008 Jun 18
2
[LLVMdev] using dynamic libraries from bytecode?
Is it possible to use dynamic library (*.so *.dll) from bytecode? If "yes" - how? -- WBR, Yaroslav Kavenchuk.
2008 Jun 18
4
[LLVMdev] Ответ: using dynamic libraries from bytecode?
...; <%struct.__mpz_struct*> [#uses=1] call void @__gmpz_mul_2exp( %struct.__mpz_struct* %x2, %struct.__mpz_struct* %x3, i32 1 ) nounwind %x4 = bitcast [1 x %struct.__mpz_struct]* %x to %struct.__mpz_struct* ; <%struct.__mpz_struct*> [#uses=1] call void @__gmpz_clear( %struct.__mpz_struct* %x4 ) nounwind br label %return return: ; preds = %entry ret void } declare dllimport void @__gmpz_init_set_ui(%struct.__mpz_struct*, i32) declare dllimport void @__gmpz_mul_2exp(%struct.__mpz_struct*, %struct.__mpz_struct*, i32) declare dllimport...