arm: fix typo in dg-require-effective-target [PR118089]
[official-gcc.git] / gcc / testsuite / gcc.dg / plugin / poly-int-01_plugin.cc
blob099c9d94c42c092e383fa15ba594da779dff1846
1 /* Not worth spending time optimizing this. */
2 /* { dg-options "-O0" } */
4 #include "config.h"
5 #include "gcc-plugin.h"
6 #include "system.h"
7 #include "coretypes.h"
8 #include "poly-int-tests.h"
10 int plugin_is_GPL_compatible;
12 int
13 plugin_init (struct plugin_name_args *plugin_info,
14 struct plugin_gcc_version *version)
16 test_helper ();
17 test_poly_coeff_traits ();
18 test_nonpoly ();
19 test_endpoint_representable ();
20 return 0;