Home
last modified time | relevance | path

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

/external/llvm/lib/Object/
DArchive.cpp36 char EndCond; in getName() local
38 EndCond = ' '; in getName()
40 EndCond = '/'; in getName()
41 StringRef::size_type end = StringRef(Name, sizeof(Name)).find(EndCond); in getName()
/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp622 Value *EndCond = End->Codegen(); in Codegen() local
623 if (EndCond == 0) return EndCond; in Codegen()
626 EndCond = Builder.CreateFCmpONE(EndCond, in Codegen()
635 Builder.CreateCondBr(EndCond, LoopBB, AfterBB); in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp726 Value *EndCond = End->Codegen(); in Codegen() local
727 if (EndCond == 0) return EndCond; in Codegen()
730 EndCond = Builder.CreateFCmpONE(EndCond, in Codegen()
739 Builder.CreateCondBr(EndCond, LoopBB, AfterBB); in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp826 Value *EndCond = End->Codegen(); in Codegen() local
827 if (EndCond == 0) return EndCond; in Codegen()
836 EndCond = Builder.CreateFCmpONE(EndCond, in Codegen()
844 Builder.CreateCondBr(EndCond, LoopBB, AfterBB); in Codegen()