From 07cbe1baa391f839c0a3370e406bbaaabfa39720 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Fri, 27 Jul 2018 06:54:13 +0000 Subject: [PATCH] [Docs] Remove hard tab character from code block in optbisect documentation git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@338105 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/OptBisect.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/OptBisect.rst b/docs/OptBisect.rst index 5a216d419a6..4dcbb76cceb 100644 --- a/docs/OptBisect.rst +++ b/docs/OptBisect.rst @@ -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. }