mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 06:56:06 +00:00
18 lines
839 B
C
18 lines
839 B
C
// RUN: %clang_cc1 -emit-llvm -coverage-notes-file=/dev/null -coverage-data-file=/dev/null -triple aarch64-linux-android30 -target-cpu generic -target-feature +tagged-globals -fsanitize=hwaddress %s -o %t
|
|
// RUN: FileCheck %s < %t
|
|
|
|
// CHECK: define internal void @__llvm_gcov_writeout() unnamed_addr [[ATTR:#[0-9]+]]
|
|
// CHECK: define internal void @__llvm_gcov_reset() unnamed_addr [[ATTR]]
|
|
// CHECK: define internal void @__llvm_gcov_init() unnamed_addr [[ATTR]]
|
|
// CHECK: define internal void @hwasan.module_ctor() [[ATTR2:#[0-9]+]]
|
|
// CHECK: attributes [[ATTR]] = {{.*}} "target-cpu"="generic" "target-features"="+tagged-globals"
|
|
// CHECK: attributes [[ATTR2]] = {{.*}} "target-cpu"="generic" "target-features"="+tagged-globals"
|
|
|
|
__attribute__((weak)) int foo = 0;
|
|
|
|
__attribute__((weak)) void bar() {}
|
|
|
|
int main() {
|
|
if (foo) bar();
|
|
}
|