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

  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 24 static double NumVal; // Filled in if tok_number
51 NumVal = strtod(NumStr.c_str(), 0);
208 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 43 static double NumVal; // Filled in if tok_number
77 NumVal = strtod(NumStr.c_str(), 0);
284 ExprAST *Result = new NumberExprAST(NumVal);
483 if (NumVal < 1 || NumVal > 100)
485 BinaryPrecedence = (unsigned)NumVal;
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 29 static double NumVal; // Filled in if tok_number
56 NumVal = strtod(NumStr.c_str(), 0);
220 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 36 static double NumVal; // Filled in if tok_number
63 NumVal = strtod(NumStr.c_str(), 0);
227 ExprAST *Result = new NumberExprAST(NumVal);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 46 static double NumVal; // Filled in if tok_number
81 NumVal = strtod(NumStr.c_str(), 0);
302 ExprAST *Result = new NumberExprAST(NumVal);
548 if (NumVal < 1 || NumVal > 100)
550 BinaryPrecedence = (unsigned)NumVal;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 40 static double NumVal; // Filled in if tok_number
72 NumVal = strtod(NumStr.c_str(), 0);
256 ExprAST *Result = new NumberExprAST(NumVal);

Completed in 568 milliseconds