Searched refs:EndCond (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/Object/ |
D | Archive.cpp | 36 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/ |
D | toy.cpp | 622 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/ |
D | toy.cpp | 726 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/ |
D | toy.cpp | 826 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()
|