- Fix common (arch-independent) tests to explicitly target -linux triple. - Override the triple inside arch-specific tests. - Add cflags to common tests. - Update individual tests. - Expand pipe stderr `|&` shorthand. Reviewed By: rafauler Differential Revision: https://reviews.llvm.org/D125548
7 lines
204 B
Plaintext
7 lines
204 B
Plaintext
# Check that llvm-bolt detects bad profile data and aborts
|
|
|
|
RUN: %clang %S/Inputs/icf-jump-tables.c -o %t
|
|
RUN: not llvm-bolt %t -o %t.bolt -data %t 2>&1 | FileCheck %s
|
|
|
|
CHECK: no valid profile data found
|