[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / lanai-regparm.c
blob215d4de70e555e5d4351be86fdba967b29aaf8a6
1 // RUN: %clang_cc1 -triple lanai-unknown-unknown -mregparm 4 %s -emit-llvm -o - | FileCheck %s
3 void f1(int a, int b, int c, int d,
4 int e, int f, int g, int h);
6 void f2(int a, int b) __attribute((regparm(0)));
8 void f0(void) {
9 // CHECK: call void @f1(i32 inreg noundef 1, i32 inreg noundef 2, i32 inreg noundef 3, i32 inreg noundef 4,
10 // CHECK: i32 noundef 5, i32 noundef 6, i32 noundef 7, i32 noundef 8)
11 f1(1, 2, 3, 4, 5, 6, 7, 8);
12 // CHECK: call void @f2(i32 noundef 1, i32 noundef 2)
13 f2(1, 2);
16 // CHECK: declare void @f1(i32 inreg noundef, i32 inreg noundef, i32 inreg noundef, i32 inreg noundef,
17 // CHECK: i32 noundef, i32 noundef, i32 noundef, i32 noundef)
18 // CHECK: declare void @f2(i32 noundef, i32 noundef)