15 lines · c
1// REQUIRES: x86-registered-target2// RUN: %clang_cc1 -S -triple x86_64 -std=c17 -fsanitize=function %s -o - | FileCheck %s --check-prefixes=CHECK3 4// CHECK: .long 2480762935void __attribute__((ms_abi)) f(void) {}6 7// CHECK: .long 9050682208void g(void) {}9 10// CHECK: .long 171797657411void __attribute__((ms_abi)) f_no_prototype() {}12 13// CHECK: .long 171797657414void g_no_prototype() {}15