[Docs] Remove hard tab character from code block in optbisect documentation
authorCraig Topper <craig.topper@intel.com>
Fri, 27 Jul 2018 06:54:13 +0000 (06:54 +0000)
committerCraig Topper <craig.topper@intel.com>
Fri, 27 Jul 2018 06:54:13 +0000 (06:54 +0000)
llvm-svn: 338105

llvm/docs/OptBisect.rst

index 5a216d4..4dcbb76 100644 (file)
@@ -166,7 +166,7 @@ A MachineFunctionPass should use FunctionPass::skipFunction() as such:
 
   bool MyMachineFunctionPass::runOnMachineFunction(Function &MF) {
     if (skipFunction(*MF.getFunction())
-         return false;
+      return false;
     // Otherwise, run the pass normally.
   }