You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
459 B
16 lines
459 B
// RUN: %clang_xray -g -fxray-modes=xray-basic,xray-fdr,xray-profiling -o %t %s
|
|
// RUN: rm -f xray-log.c-test.*
|
|
// RUN: XRAY_OPTIONS=patch_premain=true:verbosity=1:xray_mode=xray-basic %t \
|
|
// RUN: 2>&1 | FileCheck %s
|
|
// RUN: rm -f xray-log.c-test.*
|
|
//
|
|
// REQUIRES: x86_64-target-arch
|
|
// REQUIRES: built-in-llvm-tree
|
|
__attribute__((xray_always_instrument)) void always() {}
|
|
|
|
int main() {
|
|
always();
|
|
}
|
|
|
|
// CHECK: =={{[0-9].*}}==XRay: Log file in '{{.*}}'
|