We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa0b618 commit 7a7e32fCopy full SHA for 7a7e32f
bolt/lib/Passes/FrameOptimizer.cpp
@@ -225,7 +225,7 @@ Error FrameOptimizerPass::runOnFunctions(BinaryContext &BC) {
225
return Error::success();
226
227
if (!BC.isX86()) {
228
- BC.errs() << "BOLT-ERROR: " << getName() << " is supported only on X86.\n";
+ BC.errs() << "BOLT-ERROR: " << getName() << " is supported only on X86\n";
229
exit(1);
230
}
231
bolt/test/AArch64/unsupported-passes.test
@@ -5,4 +5,4 @@
5
RUN: %clang %cflags %p/../Inputs/hello.c -o %t -Wl,-q
6
RUN: not llvm-bolt %t -o %t.bolt --frame-opt=all 2>&1 | FileCheck %s
7
8
-CHECK: BOLT-ERROR: frame-optimizer is supported only on X86.
+CHECK: BOLT-ERROR: frame-optimizer is supported only on X86
0 commit comments