This repository was archived by the owner on Sep 15, 2025. It is now read-only.
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() {
636636 // Read the precedence if present.
637637 if (CurTok == tok_number) {
638638 if (NumVal < 1 || NumVal > 100 )
639- return LogErrorP (" Invalid precedecnce : must be 1..100" );
639+ return LogErrorP (" Invalid precedence : must be 1..100" );
640640 BinaryPrecedence = (unsigned )NumVal;
641641 getNextToken ();
642642 }
Original file line number Diff line number Diff line change @@ -636,7 +636,7 @@ static std::unique_ptr<PrototypeAST> ParsePrototype() {
636636 // Read the precedence if present.
637637 if (CurTok == tok_number) {
638638 if (NumVal < 1 || NumVal > 100 )
639- return LogErrorP (" Invalid precedecnce : must be 1..100" );
639+ return LogErrorP (" Invalid precedence : must be 1..100" );
640640 BinaryPrecedence = (unsigned )NumVal;
641641 getNextToken ();
642642 }
Original file line number Diff line number Diff line change @@ -636,7 +636,7 @@ static std::unique_ptr<PrototypeAST> ParsePrototype() {
636636 // Read the precedence if present.
637637 if (CurTok == tok_number) {
638638 if (NumVal < 1 || NumVal > 100 )
639- return LogErrorP (" Invalid precedecnce : must be 1..100" );
639+ return LogErrorP (" Invalid precedence : must be 1..100" );
640640 BinaryPrecedence = (unsigned )NumVal;
641641 getNextToken ();
642642 }
Original file line number Diff line number Diff line change @@ -619,7 +619,7 @@ static std::unique_ptr<PrototypeAST> ParsePrototype() {
619619 // Read the precedence if present.
620620 if (CurTok == tok_number) {
621621 if (NumVal < 1 || NumVal > 100 )
622- return LogErrorP (" Invalid precedecnce : must be 1..100" );
622+ return LogErrorP (" Invalid precedence : must be 1..100" );
623623 BinaryPrecedence = (unsigned )NumVal;
624624 getNextToken ();
625625 }
You can’t perform that action at this time.
0 commit comments