File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -47,8 +47,10 @@ def main():
47
47
parser = argparse .ArgumentParser (
48
48
description = textwrap .dedent (
49
49
"""
50
- This script builds two versions of BOLT (with the current and
51
- previous revision).
50
+ This script builds two versions of BOLT:
51
+ llvm-bolt.new, using the current revision, and llvm-bolt.old using
52
+ the previous revision. These can be used to check whether the
53
+ current revision changes BOLT's functional behavior.
52
54
"""
53
55
)
54
56
)
@@ -156,9 +158,8 @@ def main():
156
158
os .replace (bolt_path , f"{ bolt_path } .old" )
157
159
158
160
print (
159
- f"Build directory { args .build_dir } is ready to run BOLT tests, e.g.\n "
160
- "\t bin/llvm-lit -sv tools/bolt/test\n or\n "
161
- "\t bin/llvm-lit -sv tools/bolttests"
161
+ f"Build directory { args .build_dir } is ready for NFC-Mode comparison "
162
+ "between the two revisions."
162
163
)
163
164
164
165
You can’t perform that action at this time.
0 commit comments