1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

[bugpoint] Fix typo in assertion message. NFC

This commit is contained in:
Craig Topper 2020-07-23 16:06:25 -07:00
parent 7d8901e025
commit cd59b87053

View File

@ -1229,7 +1229,7 @@ static Error DebugACrash(BugDriver &BD, BugTester TestFn) {
unsigned NewSize = 0;
for (std::string &Name : FunctionNames) {
Function *Fn = BD.getProgram().getFunction(Name);
assert(Fn && "Could not find funcion?");
assert(Fn && "Could not find function?");
std::vector<Attribute> Attrs;
for (Attribute A : Fn->getAttributes().getFnAttributes())