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.
12 lines
518 B
12 lines
518 B
4 months ago
|
// Test that we cannot actually find XRay instrumentation when we build with
|
||
|
// -fno-xray-instrument but have code that's marked as 'xray_always_instrument'.
|
||
|
//
|
||
|
// RUN: %clangxx -fno-xray-instrument -c %s -o %t.o
|
||
|
// RUN: not %llvm_xray extract -symbolize %t.o 2>&1 | FileCheck %s
|
||
|
// REQUIRES: x86_64-target-arch
|
||
|
// REQUIRES: built-in-llvm-tree
|
||
|
|
||
|
// CHECK: llvm-xray: Cannot extract instrumentation map
|
||
|
// CHECK-NOT: {{.*always_instrumented.*}}
|
||
|
[[clang::xray_always_instrument]] int always_instrumented() { return 42; }
|