comparison gcc/testsuite/gcc.dg/plugin/poly-int-06_plugin.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* Not worth spending time optimizing this. */
2 /* { dg-options "-O0" } */
3
4 #include "config.h"
5 #include "gcc-plugin.h"
6 #include "system.h"
7 #include "coretypes.h"
8 #include "poly-int-tests.h"
9
10 int plugin_is_GPL_compatible;
11
12 int
13 plugin_init (struct plugin_name_args *plugin_info,
14 struct plugin_gcc_version *version)
15 {
16 test_signed_2<int> ();
17 test_signed_2<HOST_WIDE_INT> ();
18 test_signed_2<offset_int> ();
19 test_signed_2<widest_int> ();
20
21 test_ordered_2<unsigned short> ();
22 test_ordered_2<unsigned int> ();
23 test_ordered_2<unsigned HOST_WIDE_INT> ();
24
25 return 0;
26 }