[bugpoint] Fix typo in assertion message. NFC
authorCraig Topper <craig.topper@intel.com>
Thu, 23 Jul 2020 23:06:25 +0000 (16:06 -0700)
committerCraig Topper <craig.topper@intel.com>
Thu, 23 Jul 2020 23:06:43 +0000 (16:06 -0700)
llvm/tools/bugpoint/CrashDebugger.cpp

index 1a39ff654f056368a3d863e104a24a3d1904fa54..d06bca9a1258706f3c8aa1c2dd88958e9b8640ad 100644 (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())