summaryrefslogtreecommitdiffstats
path: root/test/CodeGenObjC/attr-speculative-load-hardening.m
blob: 3b4929d9356815982ae5c79a48d790e380fe438b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang -emit-llvm %s -o - -S | FileCheck %s -check-prefix=SLH

int main() __attribute__((speculative_load_hardening)) {
  return 0;
}

int test() __attribute__((no_speculative_load_hardening)) {
  return 0;
}

// SLH: @{{.*}}main{{.*}}[[SLH:#[0-9]+]]
// SLH: @{{.*}}test{{.*}}[[NOSLH:#[0-9]+]]
// SLH: attributes [[SLH]] = { {{.*}}speculative_load_hardening{{.*}} }
// SLH-NOT: attributes [[NOSLH]] = { {{.*}}speculative_load_hardening{{.*}} }