// RUN: %clang_cc1 -no-opaque-pointers -triple i686-windows-msvc -emit-llvm -o - %s | FileCheck %s --check-prefix=X86
// RUN: %clang_cc1 -no-opaque-pointers -triple x86_64-windows-msvc -emit-llvm -o - %s | FileCheck %s --check-prefix=X64
// RUN: %clang_cc1 -no-opaque-pointers -triple i686-windows-msvc -emit-llvm -o - %s -fdefault-calling-conv=vectorcall | FileCheck %s --check-prefix=X86-VEC
// RUN: %clang_cc1 -no-opaque-pointers -triple x86_64-windows-msvc -emit-llvm -o - %s -fdefault-calling-conv=vectorcall | FileCheck %s --check-prefix=X64-VEC
void ;
void __stdcall ;
void __fastcall ;
void __vectorcall ;
void __cdecl
// X86-LABEL: define dso_local void @bar()
// X86: call void @foo_default(i8* noundef null, i8* noundef null)
// X86: call x86_stdcallcc void @"\01_foo_std@8"(i8* noundef null, i8* noundef null)
// X86: call x86_fastcallcc void @"\01@foo_fast@8"(i8* inreg noundef null, i8* inreg noundef null)
// X86: call x86_vectorcallcc void @"\01foo_vector@@8"(i8* inreg noundef null, i8* inreg noundef null)
// X86: ret void
// X64-LABEL: define dso_local void @bar()
// X64: call void @foo_default(i8* noundef null, i8* noundef null)
// X64: call void @foo_std(i8* noundef null, i8* noundef null)
// X64: call void @foo_fast(i8* noundef null, i8* noundef null)
// X64: call x86_vectorcallcc void @"\01foo_vector@@16"(i8* noundef null, i8* noundef null)
// X64: ret void
// X86-VEC-LABEL: define dso_local void @bar()
// X86-VEC: call x86_vectorcallcc void @"\01foo_default@@8"(i8* inreg noundef null, i8* inreg noundef null)
// X86-VEC: call x86_stdcallcc void @"\01_foo_std@8"(i8* noundef null, i8* noundef null)
// X86-VEC: call x86_fastcallcc void @"\01@foo_fast@8"(i8* inreg noundef null, i8* inreg noundef null)
// X86-VEC: call x86_vectorcallcc void @"\01foo_vector@@8"(i8* inreg noundef null, i8* inreg noundef null)
// X86-VEC: ret void
// X64-VEC-LABEL: define dso_local void @bar()
// X64-VEC: call x86_vectorcallcc void @"\01foo_default@@16"(i8* noundef null, i8* noundef null)
// X64-VEC: call void @foo_std(i8* noundef null, i8* noundef null)
// X64-VEC: call void @foo_fast(i8* noundef null, i8* noundef null)
// X64-VEC: call x86_vectorcallcc void @"\01foo_vector@@16"(i8* noundef null, i8* noundef null)
// X64-VEC: ret void