HomeSort by relevance Sort by last modified time
    Searched defs:StartVal (Results 1 - 16 of 16) sorted by null

  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 666 Value *StartVal = Start->codegen();
667 if (!StartVal)
686 Variable->addIncoming(StartVal, PreheaderBB);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 777 Value *StartVal = Start->codegen();
778 if (!StartVal)
797 Variable->addIncoming(StartVal, PreheaderBB);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 891 Value *StartVal = Start->codegen();
892 if (!StartVal)
896 Builder.CreateStore(StartVal, Alloca);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 816 Value *StartVal = Start->Codegen();
817 if (StartVal == 0) return 0;
820 Builder.CreateStore(StartVal, Alloca);
    [all...]
toy.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 798 Value *StartVal = Start->Codegen();
799 if (StartVal == 0) return 0;
802 Builder.CreateStore(StartVal, Alloca);
    [all...]
toy.cpp 1078 Value *StartVal = Start->Codegen();
1079 if (StartVal == 0) return 0;
1082 Builder.CreateStore(StartVal, Alloca);
    [all...]