#include "src/__support/arg_list.h"
#include "test/UnitTest/Test.h"
int get_nth_int(int n, ...) { … }
TEST(LlvmLibcArgListTest, BasicUsage) { … }
int sum_two_nums(int first, int second, ...) { … }
TEST(LlvmLibcArgListTest, CopyConstructor) { … }
long int check_primitives(int first, ...) { … }
TEST(LlvmLibcArgListTest, TestPrimitiveTypes) { … }
struct S { … };
long int check_struct_type(int first, ...) { … }
TEST(LlvmLibcArgListTest, TestStructTypes) { … }
#if __has_attribute(ext_vector_type)
int1 __attribute__((ext_vector_type(1)));
int2 __attribute__((ext_vector_type(2)));
int3 __attribute__((ext_vector_type(3)));
int4 __attribute__((ext_vector_type(4)));
int check_vector_type(int first, ...) { … }
TEST(LlvmLibcArgListTest, TestVectorTypes) { … }
#endif