search for: getfcmp

Displaying 4 results from an estimated 4 matches for "getfcmp".

Did you mean: get_cp
2008 Apr 29
0
[LLVMdev] [PATCH] use-diet for review
...h of null values. + resize(Idx * 2 + 1); + } strange indentation +++ lib/Bitcode/Reader/BitcodeReader.cpp (Arbeitskopie) +void BitcodeReaderValueList::resize(unsigned Desired) { + if (Desired > Capacity) + { Please put brace on same line as if. - Constant *C= ConstantExpr::getFCmp(FCmpInst::FCMP_OEQ, - const_cast<Constant*>(CP1->getOperand(i)), - const_cast<Constant*>(CP2->getOperand(i))); + Constant *C = ConstantExpr::getFCmp(FCmpInst::FCMP_OEQ, + CP1->getOperand(i), +...
2008 Apr 29
5
[LLVMdev] [PATCH] use-diet for review
Hi all, I have reported more than enough about the space savings achieved and the associated costs, here comes the current patch for review. Since this one is substantially smaller than the previous one, I did not cut it in pieces. The front part is about headers and the rest the .cpp and other files. Cheers, Gabor -------------- next part -------------- An embedded and charset-unspecified
2011 Feb 04
3
[LLVMdev] ConstantBuilder proposal
...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); } //===--------------------------------------------------------------------===// // Constant GEPs //===--------------------------------------------------------------------===// static Consta...
2010 Mar 23
2
[LLVMdev] How to avoid memory leaks
... by 0x88D8BE: llvm::ConstantInt::get(llvm::Type const*, unsigned long, bool) (in /home/gabi/vgen/Debug/vgen) ==20504==    by 0x924A0C: llvm::ConstantFoldCompareInstruction(unsigned short, llvm::Constant*, llvm::Constant*) (in /home/gabi/vgen/Debug/vgen) ==20504==    by 0x8899E0: llvm::ConstantExpr::getFCmp(unsigned short, llvm::Constant*, llvm::Constant*) (in /home/gabi/vgen/Debug/vgen) ==20504==    by 0x423BBC: llvm::ConstantFolder::CreateFCmp(llvm::CmpInst::Predicate, llvm::Constant*, llvm::Constant*) const (ConstantFolder.h:208) ==20504==    by 0x424A04: llvm::IRBuilder<true, llvm::ConstantFold...