diff options
Diffstat (limited to 'gcc/testsuite/jit.dg/all-non-failing-tests.h')
-rw-r--r-- | gcc/testsuite/jit.dg/all-non-failing-tests.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gcc/testsuite/jit.dg/all-non-failing-tests.h b/gcc/testsuite/jit.dg/all-non-failing-tests.h index 4aa18e3..fe9ad1d 100644 --- a/gcc/testsuite/jit.dg/all-non-failing-tests.h +++ b/gcc/testsuite/jit.dg/all-non-failing-tests.h @@ -73,6 +73,13 @@ #undef create_code #undef verify_code +/* test-arrays-u64.c */ +#define create_code create_code_arrays_u64 +#define verify_code verify_code_arrays_u64 +#include "test-arrays-u64.c" +#undef create_code +#undef verify_code + /* test-autovectorize.c */ #define create_code create_code_autovectorize #define verify_code verify_code_autovectorize @@ -397,6 +404,13 @@ #undef create_code #undef verify_code +/* test-sized-float.c */ +#define create_code create_code_sized_float +#define verify_code verify_code_sized_float +#include "test-sized-float.c" +#undef create_code +#undef verify_code + /* test-target-builtins.c: This can't be in the testcases array as it is target-specific. */ @@ -517,6 +531,9 @@ const struct testcase testcases[] = { {"arrays", create_code_arrays, verify_code_arrays}, + {"arrays-u64", + create_code_arrays_u64, + verify_code_arrays_u64}, {"autovectorize", create_code_autovectorize, verify_code_autovectorize}, @@ -628,6 +645,9 @@ const struct testcase testcases[] = { {"sizeof", create_code_sizeof, verify_code_sizeof}, + {"sized-float", + create_code_sized_float, + verify_code_sized_float}, {"string_literal", create_code_string_literal, verify_code_string_literal}, |