Displaying 3 results from an estimated 3 matches for "build_fneg".
2010 Feb 18
6
[LLVMdev] ocaml survey
...value -> string -> llbuilder -> llvalue
external build_nuw_mul : llvalue -> llvalue -> string -> llbuilder -> llvalue
external build_nsw_neg : llvalue -> string -> llbuilder -> llvalue
external build_nuw_neg : llvalue -> string -> llbuilder -> llvalue
external build_fneg : llvalue -> string -> llbuilder -> llvalue
And I'm working on exposing metadata as well, but I'm not sure of the api yet.
4. Right now, there's a function "element_types" that return a
structure's subtypes. Anyone mind if I rename it to
"struct_element_typ...
2010 Feb 18
0
[LLVMdev] ocaml survey
...ing -> llbuilder -> llvalue external build_nuw_mul : llvalue -> llvalue
> -> string -> llbuilder -> llvalue external build_nsw_neg : llvalue ->
> string -> llbuilder -> llvalue external build_nuw_neg : llvalue -> string
> -> llbuilder -> llvalue external build_fneg : llvalue -> string ->
> llbuilder -> llvalue
>
> And I'm working on exposing metadata as well, but I'm not sure of the api
> yet.
Looks good.
> 4. Right now, there's a function "element_types" that return a
> structure's subtypes. Anyone mind...
2010 Feb 19
0
[LLVMdev] ocaml survey
...> llbuilder -> llvalue
> external build_nuw_mul : llvalue -> llvalue -> string -> llbuilder -> llvalue
> external build_nsw_neg : llvalue -> string -> llbuilder -> llvalue
> external build_nuw_neg : llvalue -> string -> llbuilder -> llvalue
> external build_fneg : llvalue -> string -> llbuilder -> llvalue
>
> And I'm working on exposing metadata as well, but I'm not sure of the api yet.
p1. I'm a little confused about why the constant arithmetic operators don't have both nsw and nuw.
p2. The C-language binding doesn'...