Skip to content

Commit

Permalink
fix typo in error messages (rust-lang#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgymnich committed Aug 17, 2021
1 parent 820a0eb commit 00b2e88
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions enzyme/Enzyme/EnzymeLogic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1196,7 +1196,7 @@ bool legalCombinedForwardReverse(
llvm::errs() << " [bi] failed to replace function "
<< (called->getName()) << " due to " << *I << "\n";
else
llvm::errs() << " [bi] ailed to replace function " << (*calledValue)
llvm::errs() << " [bi] failed to replace function " << (*calledValue)
<< " due to " << *I << "\n";
}
return;
Expand Down Expand Up @@ -1241,7 +1241,7 @@ bool legalCombinedForwardReverse(
llvm::errs() << " [phi] failed to replace function "
<< (called->getName()) << " due to " << *I << "\n";
else
llvm::errs() << " [phi] ailed to replace function " << (*calledValue)
llvm::errs() << " [phi] failed to replace function " << (*calledValue)
<< " due to " << *I << "\n";
}
return;
Expand All @@ -1255,7 +1255,7 @@ bool legalCombinedForwardReverse(
llvm::errs() << " [nv] failed to replace function "
<< (called->getName()) << " due to " << *I << "\n";
else
llvm::errs() << " [nv] ailed to replace function " << (*calledValue)
llvm::errs() << " [nv] failed to replace function " << (*calledValue)
<< " due to " << *I << "\n";
}
return;
Expand All @@ -1267,7 +1267,7 @@ bool legalCombinedForwardReverse(
llvm::errs() << " [ci] failed to replace function "
<< (called->getName()) << " due to " << *I << "\n";
else
llvm::errs() << " [ci] ailed to replace function " << (*calledValue)
llvm::errs() << " [ci] failed to replace function " << (*calledValue)
<< " due to " << *I << "\n";
}
return;
Expand All @@ -1284,8 +1284,8 @@ bool legalCombinedForwardReverse(
llvm::errs() << " [am] failed to replace function "
<< (called->getName()) << " due to " << *I << "\n";
else
llvm::errs() << " [am] ailed to replace function " << (*calledValue)
<< " due to " << *I << "\n";
llvm::errs() << " [am] failed to replace function "
<< (*calledValue) << " due to " << *I << "\n";
}
return;
}
Expand Down Expand Up @@ -1377,7 +1377,7 @@ bool legalCombinedForwardReverse(
llvm::errs() << " [nonspec] failed to replace function "
<< (called->getName()) << " due to " << *inst << "\n";
else
llvm::errs() << " [nonspec] ailed to replace function "
llvm::errs() << " [nonspec] failed to replace function "
<< (*calledValue) << " due to " << *inst << "\n";
}
legal = false;
Expand All @@ -1393,7 +1393,7 @@ bool legalCombinedForwardReverse(
llvm::errs() << " [premove] failed to replace function "
<< (called->getName()) << " due to " << *inst << "\n";
else
llvm::errs() << " [premove] ailed to replace function "
llvm::errs() << " [premove] failed to replace function "
<< (*calledValue) << " due to " << *inst << "\n";
}
// Early exit
Expand Down

0 comments on commit 00b2e88

Please sign in to comment.