2021-10-09 04:39:24 +08:00
|
|
|
# Verifies that input without relocations is rejected in relocs mode.
|
|
|
|
|
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
|
2022-06-11 05:10:58 +08:00
|
|
|
RUN: not llvm-bolt %t -o /dev/null --relocs 2>&1 | FileCheck %s
|
2021-10-09 04:39:24 +08:00
|
|
|
|
|
|
|
CHECK: BOLT-ERROR: relocations against code are missing from the input file.
|