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.
13 lines
496 B
13 lines
496 B
// RUN: %clang_cc1 -E -fsanitize=efficiency-cache-frag %s -o - | FileCheck --check-prefix=CHECK-ESAN %s
|
|
// RUN: %clang_cc1 -E -fsanitize=efficiency-working-set %s -o - | FileCheck --check-prefix=CHECK-ESAN %s
|
|
// RUN: %clang_cc1 -E %s -o - | FileCheck --check-prefix=CHECK-NO-ESAN %s
|
|
|
|
#if __has_feature(efficiency_sanitizer)
|
|
int EfficiencySanitizerEnabled();
|
|
#else
|
|
int EfficiencySanitizerDisabled();
|
|
#endif
|
|
|
|
// CHECK-ESAN: EfficiencySanitizerEnabled
|
|
// CHECK-NO-ESAN: EfficiencySanitizerDisabled
|