2021-10-09 05:33:33 +08:00
|
|
|
# Check that we detect re-optimization attempt.
|
|
|
|
|
2022-07-12 08:58:32 +08:00
|
|
|
# This test uses the clang driver without target flags and will only succeed
|
|
|
|
# on Linux systems where the host triple matches the target.
|
|
|
|
REQUIRES: system-linux
|
|
|
|
|
2022-05-13 22:12:40 +08:00
|
|
|
RUN: %clang %cflags %S/Inputs/icf-jump-tables.c -o %t.exe
|
2021-10-09 05:33:33 +08:00
|
|
|
RUN: llvm-bolt %t.exe -o %t 2>&1 > /dev/null
|
|
|
|
RUN: not llvm-bolt %t -o %t.bolt 2>&1 | FileCheck %s
|
|
|
|
|
|
|
|
CHECK: BOLT-ERROR: input file was processed by BOLT. Cannot re-optimize.
|