Skip to content

Commit 1219459

Browse files
authored
Merge pull request swiftlang#67921 from beccadax/this-prototype-has-been-recalled
Fix function prototypes in simd.h test
2 parents 113bfc7 + c8d1ce7 commit 1219459

File tree

1 file changed

+41
-41
lines changed
  • test/Inputs/clang-importer-sdk/usr/include

1 file changed

+41
-41
lines changed

test/Inputs/clang-importer-sdk/usr/include/simd.h

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -92,45 +92,45 @@ int128 makes_int128();
9292
uint20 makes_uint20();
9393

9494
#ifndef SIMD_NO_CODE
95-
takes_char2(char2);
96-
takes_char64(char64);
97-
takes_uchar3(uchar3);
98-
takes_uchar32(uchar32);
99-
takes_short3(short3);
100-
takes_short8(short8);
101-
takes_ushort1(ushort1);
102-
takes_ushort16(ushort16);
103-
takes_int3(int3);
104-
takes_int32(int32);
105-
takes_uint4(uint4);
106-
takes_uint2(uint2);
107-
takes_long2(long2);
108-
takes_long8(long8);
109-
takes_ulong4(ulong4);
110-
takes_ulong1(ulong1);
111-
takes_ll3(ll3);
112-
takes_ll8(ll8);
113-
takes_ull4(ull4);
114-
takes_ull16(ull16);
115-
takes_half2(half2);
116-
takes_half3(half3);
117-
takes_half4(half4);
118-
takes_half8(half8);
119-
takes_half16(half16);
120-
takes_half32(half32);
121-
takes_float2(float2);
122-
takes_float3(float3);
123-
takes_float4(float4);
124-
takes_float8(float8);
125-
takes_float16(float16);
126-
takes_double2(double2);
127-
takes_double3(double3);
128-
takes_double4(double4);
129-
takes_double8(double8);
130-
takes_char17(char17);
131-
takes_uchar21(uchar21);
132-
takes_short5(short5);
133-
takes_ushort6(ushort6);
134-
takes_int128(int128);
135-
takes_uint20(uint20);
95+
void takes_char2(char2);
96+
void takes_char64(char64);
97+
void takes_uchar3(uchar3);
98+
void takes_uchar32(uchar32);
99+
void takes_short3(short3);
100+
void takes_short8(short8);
101+
void takes_ushort1(ushort1);
102+
void takes_ushort16(ushort16);
103+
void takes_int3(int3);
104+
void takes_int32(int32);
105+
void takes_uint4(uint4);
106+
void takes_uint2(uint2);
107+
void takes_long2(long2);
108+
void takes_long8(long8);
109+
void takes_ulong4(ulong4);
110+
void takes_ulong1(ulong1);
111+
void takes_ll3(ll3);
112+
void takes_ll8(ll8);
113+
void takes_ull4(ull4);
114+
void takes_ull16(ull16);
115+
void takes_half2(half2);
116+
void takes_half3(half3);
117+
void takes_half4(half4);
118+
void takes_half8(half8);
119+
void takes_half16(half16);
120+
void takes_half32(half32);
121+
void takes_float2(float2);
122+
void takes_float3(float3);
123+
void takes_float4(float4);
124+
void takes_float8(float8);
125+
void takes_float16(float16);
126+
void takes_double2(double2);
127+
void takes_double3(double3);
128+
void takes_double4(double4);
129+
void takes_double8(double8);
130+
void takes_char17(char17);
131+
void takes_uchar21(uchar21);
132+
void takes_short5(short5);
133+
void takes_ushort6(ushort6);
134+
void takes_int128(int128);
135+
void takes_uint20(uint20);
136136
#endif

0 commit comments

Comments
 (0)