HomeSort by relevance Sort by last modified time
    Searched refs:NextVar (Results 1 - 9 of 9) sorted by null

  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 621 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
643 Variable->addIncoming(NextVar, LoopEndBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 725 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar");
747 Variable->addIncoming(NextVar, LoopEndBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 779 // nextvar = curvar + step
780 // store nextvar -> var
834 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
835 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 806 // nextvar = curvar + step
807 // store nextvar -> var
861 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
862 Builder.CreateStore(NextVar, Alloca);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 1028 // nextvar = curvar + step
1029 // store nextvar -> var
1083 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
1084 Builder.CreateStore(NextVar, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 788 // nextvar = curvar + step
789 // store nextvar -> var
843 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar");
844 Builder.CreateStore(NextVar, Alloca);
    [all...]
toy.cpp 1068 // nextvar = curvar + step
1069 // store nextvar -> var
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp     [all...]

Completed in 54 milliseconds