1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

[Docs] Remove hard tab character from code block in optbisect documentation

llvm-svn: 338105
This commit is contained in:
Craig Topper 2018-07-27 06:54:13 +00:00
parent a19cba4d76
commit abbbe309af

View 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.
}