Skip to content

Commit 47a986d

Browse files
Addressing reviewers (2)
1 parent e74d2ae commit 47a986d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bolt/test/perf2bolt/X86/perf2bolt-spe.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ RUN: %clang %cflags %p/../../Inputs/asm_foo.s %p/../../Inputs/asm_main.c -o %t.e
66
RUN: touch %t.empty.perf.data
77
RUN: not perf2bolt -p %t.empty.perf.data -o %t.perf.boltdata --nl --spe --pa %t.exe 2>&1 | FileCheck %s
88

9-
CHECK: BOLT-ERROR: -spe is available only on AArch64.
9+
CHECK: perf2bolt: -spe is available only on AArch64.

bolt/tools/driver/llvm-bolt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ int main(int argc, char **argv) {
240240

241241
if (opts::AggregateOnly && !RI.getBinaryContext().isAArch64() &&
242242
opts::ArmSPE) {
243-
errs() << "BOLT-ERROR: -spe is available only on AArch64.\n";
243+
errs() << ToolName << ": -spe is available only on AArch64.\n";
244244
exit(1);
245245
}
246246

0 commit comments

Comments
 (0)