diff options
author | Yao Qi <yao@codesourcery.com> | 2011-05-30 02:27:51 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2011-05-30 02:27:51 +0000 |
commit | 6680506ef023d4cf1046561ad3dbcf48d3d357b0 (patch) | |
tree | 9beb465f97a52d7b95af514f433a97e90d00b417 /gdb/testsuite/gdb.base/varargs.c | |
parent | e43ec454f97ac55350df1086ddfa76bd08d7aead (diff) | |
download | binutils-gdb-6680506ef023d4cf1046561ad3dbcf48d3d357b0.tar.gz |
2011-05-30 Yao Qi <yao@codesourcery.com>
* gdb.base/varargs.c (find_max_float_real): New.
(find_max_double_real, find_max_long_double_real): New.
* gdb.base/varargs.exp: Call these new added functions.
* lib/gdb.exp (setup_kfail_for_target): New.
Diffstat (limited to 'gdb/testsuite/gdb.base/varargs.c')
-rw-r--r-- | gdb/testsuite/gdb.base/varargs.c | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/varargs.c b/gdb/testsuite/gdb.base/varargs.c index 1122767977c..1ad2ffcfa72 100644 --- a/gdb/testsuite/gdb.base/varargs.c +++ b/gdb/testsuite/gdb.base/varargs.c @@ -23,6 +23,28 @@ float fa,fb,fc,fd; double da,db,dc,dd; double dmax_val; +#ifdef TEST_COMPLEX +extern float crealf (float _Complex); +extern double creal (double _Complex); +extern long double creall (long double _Complex); + +float _Complex fc1 = 1.0F + 1.0iF; +float _Complex fc2 = 2.0F + 2.0iF; +float _Complex fc3 = 3.0F + 3.0iF; +float _Complex fc4 = 4.0F + 4.0iF; + +double _Complex dc1 = 1.0 + 1.0i; +double _Complex dc2 = 2.0 + 2.0i; +double _Complex dc3 = 3.0 + 3.0i; +double _Complex dc4 = 4.0 + 4.0i; + +long double _Complex ldc1 = 1.0L + 1.0Li; +long double _Complex ldc2 = 2.0L + 2.0Li; +long double _Complex ldc3 = 3.0L + 3.0Li; +long double _Complex ldc4 = 4.0L + 4.0Li; + +#endif + int main() { c = -1; uc = 1; @@ -109,3 +131,61 @@ double find_max_double(int num_vals, double first_val, ...) { return max_val; } + +#ifdef TEST_COMPLEX +float _Complex +find_max_float_real (int num_vals, ...) +{ + float _Complex max = 0.0F + 0.0iF; + float _Complex x; + va_list argp; + int i; + + va_start(argp, num_vals); + for (i = 0; i < num_vals; i++) + { + x = va_arg (argp, float _Complex); + if (crealf (max) < crealf (x)) max = x; + } + + return max; +} + +double _Complex +find_max_double_real (int num_vals, ...) +{ + double _Complex max = 0.0 + 0.0i; + double _Complex x; + va_list argp; + int i; + + va_start(argp, num_vals); + for (i = 0; i < num_vals; i++) + { + x = va_arg (argp, double _Complex); + if (creal (max) < creal (x)) max = x; + } + + return max; +} + +long double _Complex +find_max_long_double_real (int num_vals, ...) +{ + long double _Complex max = 0.0L + 0.0iL; + long double _Complex x; + va_list argp; + int i; + + va_start(argp, num_vals); + for (i = 0; i < num_vals; i++) + { + x = va_arg (argp, long double _Complex); + if (creall (max) < creal (x)) max = x; + } + + return max; +} + + +#endif /* TEST_COMPLEX */ |