URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [dfp/] [pr35739.c] - Rev 816
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR c/35739 */ /* { dg-do compile { target *-*-linux* } } */ /* { dg-options "-O -fpreprocessed -fmudflap" } */ _Decimal128 foo (int n, ...) { int i; _Decimal128 j = 0; __builtin_va_list ap; __builtin_va_start (ap, n); for (i = 0; i < n; i++) j += __builtin_va_arg (ap, _Decimal128); __builtin_va_end (ap); return j; }
Go to most recent revision | Compare with Previous | Blame | View Log