summaryrefslogtreecommitdiff
path: root/bolt/docs
diff options
context:
space:
mode:
authorHuan Nguyen <nhuhuan@yahoo.com>2022-06-01 13:59:28 -0700
committerAmir Ayupov <aaupov@fb.com>2022-06-01 14:00:16 -0700
commit38fb7d56e543f3cd137a79d6e6331b697ef9f92c (patch)
treec95999278fb729c796dc9e2f655a29cd45819f6f /bolt/docs
parentd53de9b7ac394963730ef34616d4104746eea0f0 (diff)
downloadllvm-38fb7d56e543f3cd137a79d6e6331b697ef9f92c.tar.gz
[BOLT][TEST] Replace cache+ option with ext-tsp
Replace "cache+" with "ext-tsp" in all BOLT tests Test Plan: ``` ninja check-bolt grep -rnw . -e "cache+" ``` no more tests containing "cache+" "cache+" and "ext-tsp" are aliases Reviewed By: rafauler Differential Revision: https://reviews.llvm.org/D126714
Diffstat (limited to 'bolt/docs')
-rw-r--r--bolt/docs/OptimizingClang.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/bolt/docs/OptimizingClang.md b/bolt/docs/OptimizingClang.md
index e66201b31d6d..4bbc757d59d5 100644
--- a/bolt/docs/OptimizingClang.md
+++ b/bolt/docs/OptimizingClang.md
@@ -64,7 +64,7 @@ Notice that we are passing `clang-7` to `perf2bolt` which is the real binary tha
the generated profile:
```bash
$ llvm-bolt $CPATH/clang-7 -o $CPATH/clang-7.bolt -b clang-7.yaml \
- -reorder-blocks=cache+ -reorder-functions=hfsort+ -split-functions=3 \
+ -reorder-blocks=ext-tsp -reorder-functions=hfsort+ -split-functions=3 \
-split-all-cold -dyno-stats -icf=1 -use-gnu-stack
```
The output will look similar to the one below: