diff options
author | Rong Xu <xur@google.com> | 2019-04-30 22:35:35 +0000 |
---|---|---|
committer | Rong Xu <xur@google.com> | 2019-04-30 22:35:35 +0000 |
commit | b1f9577a5fdd1c8a624c1ac23a4f88577b4cb3e0 (patch) | |
tree | 70be3f01a300d348ae87a792346cdc7e2eafce56 | |
parent | 905e60c422fe09a3d63b2881abb53806b41b23f9 (diff) | |
download | bcm5719-llvm-b1f9577a5fdd1c8a624c1ac23a4f88577b4cb3e0.tar.gz bcm5719-llvm-b1f9577a5fdd1c8a624c1ac23a4f88577b4cb3e0.zip |
[llvm-profdata] Fix indentation error in docs. NFC.
llvm-svn: 359625
-rw-r--r-- | llvm/docs/CommandGuide/llvm-profdata.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/CommandGuide/llvm-profdata.rst b/llvm/docs/CommandGuide/llvm-profdata.rst index e5f10ef0eae..7f5887ae9d3 100644 --- a/llvm/docs/CommandGuide/llvm-profdata.rst +++ b/llvm/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 |