diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/run.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/run.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/run.c b/gcc/testsuite/gcc.c-torture/compile/run.c new file mode 100644 index 0000000..40892f6 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/run.c @@ -0,0 +1,11 @@ +main () +{ + typedef short int xtype; + + xtype i; + xtype ii; + + for (i = 0; i < 100; i++) + for (ii = 65535; --ii;) + ; +} |