From c88c740bf65dd2ba854f9807d33b8daa976bc28b Mon Sep 17 00:00:00 2001 From: Rong Xu Date: Tue, 30 Apr 2019 22:35:35 +0000 Subject: [PATCH] [llvm-profdata] Fix indentation error in docs. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@359625 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CommandGuide/llvm-profdata.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CommandGuide/llvm-profdata.rst b/docs/CommandGuide/llvm-profdata.rst index e5f10ef0eae..7f5887ae9d3 100644 --- a/docs/CommandGuide/llvm-profdata.rst +++ b/docs/CommandGuide/llvm-profdata.rst @@ -262,7 +262,7 @@ c2_v_i (i = 1 .. v) are unmatched counters (or counters only existing in) Let sum_1 = c1_1 + c1_2 + ... + c1_n + c1_u_1 + c2_u_2 + ... + c2_u_s, and sum_2 = c2_1 + c2_2 + ... + c2_n + c2_v_1 + c2_v_2 + ... + c2_v_t. *overlap* = min(c1_1/sum_1, c2_1/sum_2) + min(c1_2/sum_1, c2_2/sum_2) + ... - + min(c1_n/sum_1, c2_n/sum_2). ++ min(c1_n/sum_1, c2_n/sum_2). The result overlap distribution is a percentage number, ranging from 0.0% to 100.0%, where 0.0% means there is no overlap and 100.0% means a perfect -- 2.50.1