Searched refs:EndCond (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/Object/
H A DArchive.h38 char EndCond; local
40 EndCond = ' ';
42 EndCond = '/';
44 llvm::StringRef(Name, sizeof(Name)).find(EndCond);
48 // Don't include the EndCond if there is one.
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp622 Value *EndCond = End->Codegen(); local
623 if (EndCond == 0) return EndCond;
626 EndCond = Builder.CreateFCmpONE(EndCond,
635 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp726 Value *EndCond = End->Codegen(); local
727 if (EndCond == 0) return EndCond;
730 EndCond = Builder.CreateFCmpONE(EndCond,
739 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp826 Value *EndCond = End->Codegen(); local
827 if (EndCond == 0) return EndCond;
836 EndCond = Builder.CreateFCmpONE(EndCond,
844 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);

Completed in 196 milliseconds