File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
llvm/examples/Kaleidoscope/BuildingAJIT Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -636,7 +636,7 @@ static std::unique_ptr<PrototypeAST> ParsePrototype() {
636
636
// Read the precedence if present.
637
637
if (CurTok == tok_number) {
638
638
if (NumVal < 1 || NumVal > 100 )
639
- return LogErrorP (" Invalid precedecnce : must be 1..100" );
639
+ return LogErrorP (" Invalid precedence : must be 1..100" );
640
640
BinaryPrecedence = (unsigned )NumVal;
641
641
getNextToken ();
642
642
}
Original file line number Diff line number Diff line change @@ -636,7 +636,7 @@ static std::unique_ptr<PrototypeAST> ParsePrototype() {
636
636
// Read the precedence if present.
637
637
if (CurTok == tok_number) {
638
638
if (NumVal < 1 || NumVal > 100 )
639
- return LogErrorP (" Invalid precedecnce : must be 1..100" );
639
+ return LogErrorP (" Invalid precedence : must be 1..100" );
640
640
BinaryPrecedence = (unsigned )NumVal;
641
641
getNextToken ();
642
642
}
Original file line number Diff line number Diff line change @@ -636,7 +636,7 @@ static std::unique_ptr<PrototypeAST> ParsePrototype() {
636
636
// Read the precedence if present.
637
637
if (CurTok == tok_number) {
638
638
if (NumVal < 1 || NumVal > 100 )
639
- return LogErrorP (" Invalid precedecnce : must be 1..100" );
639
+ return LogErrorP (" Invalid precedence : must be 1..100" );
640
640
BinaryPrecedence = (unsigned )NumVal;
641
641
getNextToken ();
642
642
}
Original file line number Diff line number Diff line change @@ -619,7 +619,7 @@ static std::unique_ptr<PrototypeAST> ParsePrototype() {
619
619
// Read the precedence if present.
620
620
if (CurTok == tok_number) {
621
621
if (NumVal < 1 || NumVal > 100 )
622
- return LogErrorP (" Invalid precedecnce : must be 1..100" );
622
+ return LogErrorP (" Invalid precedence : must be 1..100" );
623
623
BinaryPrecedence = (unsigned )NumVal;
624
624
getNextToken ();
625
625
}
You can’t perform that action at this time.
0 commit comments