[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / restrict.c
blob01d4997a4c7daaff4de3b8f101f9365beec664a1
1 // RUN: %clang_cc1 -triple x86_64-darwin-apple -emit-llvm %s -o - | FileCheck %s
3 // PR6695
5 // CHECK: define{{.*}} void @test0(ptr noundef %{{.*}}, i32 noundef %{{.*}})
6 void test0(int *x, int y) {
9 // CHECK: define{{.*}} void @test1(ptr noalias noundef %{{.*}}, i32 noundef %{{.*}})
10 void test1(int * restrict x, int y) {
13 // CHECK: define{{.*}} void @test2(ptr noundef %{{.*}}, ptr noalias noundef %{{.*}})
14 void test2(int *x, int * restrict y) {
17 typedef int * restrict rp;
19 // CHECK: define{{.*}} void @test3(ptr noalias noundef %{{.*}}, i32 noundef %{{.*}})
20 void test3(rp x, int y) {
23 // CHECK: define{{.*}} void @test4(ptr noundef %{{.*}}, ptr noalias noundef %{{.*}})
24 void test4(int *x, rp y) {