1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -emit-llvm -mrtd %s -o - -triple=i386-mingw32 | FileCheck %s 2*f4a2713aSLionel Sambuc f1(void)3*f4a2713aSLionel Sambucvoid f1(void) {} 4*f4a2713aSLionel Sambuc // CHECK: define x86_stdcallcc void @"\01_f1@0" 5*f4a2713aSLionel Sambuc f2(void)6*f4a2713aSLionel Sambucvoid __stdcall f2(void) {} 7*f4a2713aSLionel Sambuc // CHECK: define x86_stdcallcc void @"\01_f2@0" 8*f4a2713aSLionel Sambuc f3(void)9*f4a2713aSLionel Sambucvoid __fastcall f3(void) {} 10*f4a2713aSLionel Sambuc // CHECK: define x86_fastcallcc void @"\01@f3@0" 11