Skip to content

Commit 7a7e32f

Browse files
Addressing reviewers
1 parent aa0b618 commit 7a7e32f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bolt/lib/Passes/FrameOptimizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ Error FrameOptimizerPass::runOnFunctions(BinaryContext &BC) {
225225
return Error::success();
226226

227227
if (!BC.isX86()) {
228-
BC.errs() << "BOLT-ERROR: " << getName() << " is supported only on X86.\n";
228+
BC.errs() << "BOLT-ERROR: " << getName() << " is supported only on X86\n";
229229
exit(1);
230230
}
231231

bolt/test/AArch64/unsupported-passes.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
RUN: %clang %cflags %p/../Inputs/hello.c -o %t -Wl,-q
66
RUN: not llvm-bolt %t -o %t.bolt --frame-opt=all 2>&1 | FileCheck %s
77

8-
CHECK: BOLT-ERROR: frame-optimizer is supported only on X86.
8+
CHECK: BOLT-ERROR: frame-optimizer is supported only on X86

0 commit comments

Comments
 (0)