Mercurial > hg > CbC > CbC_llvm
view clang/test/Sema/callingconv-ms_abi.c @ 173:0572611fdcc8 llvm10 llvm12
reorgnization done
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 11:55:54 +0900 |
parents | 1d019706d866 |
children | c4bab56944e8 |
line wrap: on
line source
// RUN: %clang_cc1 -fsyntax-only -verify -triple x86_64-pc-win32 %s void __attribute__((ms_abi)) foo(void); void (*pfoo)(void) = foo; void __attribute__((sysv_abi)) bar(void); void (*pbar)(void) = bar; // expected-warning{{incompatible function pointer types}} void (__attribute__((sysv_abi)) *pfoo2)(void) = foo; // expected-warning{{incompatible function pointer types}}