search for: geticmp

Displaying 2 results from an estimated 2 matches for "geticmp".

Did you mean: getfcmp
2011 Feb 04
3
[LLVMdev] ConstantBuilder proposal
...onstant *V2) { return ConstantExpr::getSelect(C, V1, V2); } /// @brief Return an ICmp or FCmp comparison operator constant expression. static Constant *GetCompare(unsigned short pred, Constant *C1, Constant *C2) { return ConstantExpr::getCompare(pred, C1, C2); } static Constant *GetICmp(unsigned short pred, Constant *C1, Constant *C2) { return ConstantExpr::getICmp(pred, C1, C2); } static Constant *GetFCmp(unsigned short pred, Constant *C1, Constant *C2) { return ConstantExpr::getFCmp(pred, C1, C2); } //===----------------------------------------------------------...
2010 Jul 21
1
[LLVMdev] Union type, is it really used or necessary?
On Tue, Jul 20, 2010 at 2:46 PM, Talin <viridia at gmail.com> wrote: > On Tue, Jul 20, 2010 at 8:34 AM, Chris Lattner <clattner at apple.com> wrote: > >> >> On Jul 20, 2010, at 1:36 AM, Anton Korobeynikov wrote: >> >> >> used to make the code manipulating the union type "well typed". This >> >> approach seems work very well, is