aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/xray-global-init.cpp
blob: 588be8a45a507c740be7e09c19939acaf52e7957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %clang_cc1 -triple=x86_64-linux-gnu -emit-llvm -fxray-instrument -fxray-instruction-threshold=1 %s -o - \
// RUN:   | FileCheck %s

struct A {
  A();
  ~A();
};

A a;

// Check that the xray-instruction-threshold was applied
// CHECK: define internal void @_GLOBAL__sub_I_xray_global_init.cpp() [[NUX:#[0-9]+]] section ".text.startup" {
// CHECK: attributes [[NUX]] = { noinline nounwind {{.*}}"xray-instruction-threshold"="1"{{.*}} }