[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / hwasan-new-pm.c
blob47014698f6df72f99cd482c6a76684d8deed9604
1 // Test that HWASan and KHWASan runs with the new pass manager.
2 // We run them under different optimizations to ensure the IR is still
3 // being instrumented properly.
5 // RUN: %clang_cc1 -triple x86_64-linux-gnu -S -emit-llvm -o - -fsanitize=hwaddress %s | FileCheck %s
6 // RUN: %clang_cc1 -triple x86_64-linux-gnu -S -emit-llvm -o - -O1 -fsanitize=hwaddress %s | FileCheck %s
8 // RUN: %clang_cc1 -triple x86_64-linux-gnu -S -emit-llvm -o - -fsanitize=kernel-hwaddress %s | FileCheck %s
9 // RUN: %clang_cc1 -triple x86_64-linux-gnu -S -emit-llvm -o - -O1 -fsanitize=kernel-hwaddress %s | FileCheck %s
11 int foo(int *a) { return *a; }
13 // All the cases above mark the function with sanitize_hwaddress.
14 // CHECK: sanitize_hwaddress