[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / attr-callconv.m
blob8cf8d2bd71f764c14040c7c0fa7e0ac68be155e4
1 // RUN: %clang_cc1 -triple i386-unknown-unknown -emit-llvm -o - %s | FileCheck %s
3 @interface Test
4 - (void)test;
5 @end
7 @implementation Test
8 - (void)test __attribute__((stdcall)) {}
9     // CHECK: define{{.*}}x86_stdcallcc{{.*}}Test test
10     
11 - (void)test2 __attribute__((ms_abi)) {}
12     // CHECK: define{{.*}}win64cc{{.*}}Test test2
13 @end