Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1257)

Unified Diff: gcc/gcc/testsuite/gcc.dg/dfp/func-scalar.c

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: gcc/gcc/testsuite/gcc.dg/dfp/func-scalar.c
diff --git a/gcc/gcc/testsuite/gcc.dg/dfp/func-scalar.c b/gcc/gcc/testsuite/gcc.dg/dfp/func-scalar.c
deleted file mode 100644
index bbda52c0773e1a68b0a27bf0c74cdc5bce0d5715..0000000000000000000000000000000000000000
--- a/gcc/gcc/testsuite/gcc.dg/dfp/func-scalar.c
+++ /dev/null
@@ -1,207 +0,0 @@
-/* { dg-options "-std=gnu99" } */
-
-/* C99 6.5.2.2 Function calls.
- Test scalar passing and return values involving decimal floating
- point types. */
-
-extern void abort (void);
-static int failcnt;
-
-/* Support compiling the test to report individual failures; default is
- to abort as soon as a check fails. */
-#ifdef DBG
-#include <stdio.h>
-#define FAILURE { printf ("failed at line %d\n", __LINE__); failcnt++; }
-#else
-#define FAILURE abort ();
-#endif
-
-/* A handful of functions that return their Nth _Decimal32
- argument. */
-
-_Decimal32
-arg0_32 (_Decimal32 arg0, _Decimal32 arg1, _Decimal32 arg2,
- _Decimal32 arg3, _Decimal32 arg4, _Decimal32 arg5)
-{
- return arg0;
-}
-
-_Decimal32
-arg1_32 (_Decimal32 arg0, _Decimal32 arg1, _Decimal32 arg2,
- _Decimal32 arg3, _Decimal32 arg4, _Decimal32 arg5)
-{
- return arg1;
-}
-
-_Decimal32
-arg2_32 (_Decimal32 arg0, _Decimal32 arg1, _Decimal32 arg2,
- _Decimal32 arg3, _Decimal32 arg4, _Decimal32 arg5)
-{
- return arg2;
-}
-
-_Decimal32
-arg3_32 (_Decimal32 arg0, _Decimal32 arg1, _Decimal32 arg2,
- _Decimal32 arg3, _Decimal32 arg4, _Decimal32 arg5)
-{
- return arg3;
-}
-
-_Decimal32
-arg4_32 (_Decimal32 arg0, _Decimal32 arg1, _Decimal32 arg2,
- _Decimal32 arg3, _Decimal32 arg4, _Decimal32 arg5)
-{
- return arg4;
-}
-
-_Decimal32
-arg5_32 (_Decimal32 arg0, _Decimal32 arg1, _Decimal32 arg2,
- _Decimal32 arg3, _Decimal32 arg4, _Decimal32 arg5)
-{
- return arg5;
-}
-
-
-/* A handful of functions that return their Nth _Decimal64
- argument. */
-
-_Decimal64
-arg0_64 (_Decimal64 arg0, _Decimal64 arg1, _Decimal64 arg2,
- _Decimal64 arg3, _Decimal64 arg4, _Decimal64 arg5)
-{
- return arg0;
-}
-
-_Decimal64
-arg1_64 (_Decimal64 arg0, _Decimal64 arg1, _Decimal64 arg2,
- _Decimal64 arg3, _Decimal64 arg4, _Decimal64 arg5)
-{
- return arg1;
-}
-
-_Decimal64
-arg2_64 (_Decimal64 arg0, _Decimal64 arg1, _Decimal64 arg2,
- _Decimal64 arg3, _Decimal64 arg4, _Decimal64 arg5)
-{
- return arg2;
-}
-
-_Decimal64
-arg3_64 (_Decimal64 arg0, _Decimal64 arg1, _Decimal64 arg2,
- _Decimal64 arg3, _Decimal64 arg4, _Decimal64 arg5)
-{
- return arg3;
-}
-
-_Decimal64
-arg4_64 (_Decimal64 arg0, _Decimal64 arg1, _Decimal64 arg2,
- _Decimal64 arg3, _Decimal64 arg4, _Decimal64 arg5)
-{
- return arg4;
-}
-
-_Decimal64
-arg5_64 (_Decimal64 arg0, _Decimal64 arg1, _Decimal64 arg2,
- _Decimal64 arg3, _Decimal64 arg4, _Decimal64 arg5)
-{
- return arg5;
-}
-
-
-/* A handful of functions that return their Nth _Decimal128
- argument. */
-
-_Decimal128
-arg0_128 (_Decimal128 arg0, _Decimal128 arg1, _Decimal128 arg2,
- _Decimal128 arg3, _Decimal128 arg4, _Decimal128 arg5)
-{
- return arg0;
-}
-
-_Decimal128
-arg1_128 (_Decimal128 arg0, _Decimal128 arg1, _Decimal128 arg2,
- _Decimal128 arg3, _Decimal128 arg4, _Decimal128 arg5)
-{
- return arg1;
-}
-
-_Decimal128
-arg2_128 (_Decimal128 arg0, _Decimal128 arg1, _Decimal128 arg2,
- _Decimal128 arg3, _Decimal128 arg4, _Decimal128 arg5)
-{
- return arg2;
-}
-
-_Decimal128
-arg3_128 (_Decimal128 arg0, _Decimal128 arg1, _Decimal128 arg2,
- _Decimal128 arg3, _Decimal128 arg4, _Decimal128 arg5)
-{
- return arg3;
-}
-
-_Decimal128
-arg4_128 (_Decimal128 arg0, _Decimal128 arg1, _Decimal128 arg2,
- _Decimal128 arg3, _Decimal128 arg4, _Decimal128 arg5)
-{
- return arg4;
-}
-
-_Decimal128
-arg5_128 (_Decimal128 arg0, _Decimal128 arg1, _Decimal128 arg2,
- _Decimal128 arg3, _Decimal128 arg4, _Decimal128 arg5)
-{
- return arg5;
-}
-
-
-
-int
-main ()
-{
- /* _Decimal32 variants. */
- if (arg0_32 (0.0df, 1.0df, 2.0df, 3.0df, 4.0df, 5.0df) != 0.0df)
- FAILURE
- if (arg1_32 (0.0df, 1.0df, 2.0df, 3.0df, 4.0df, 5.0df) != 1.0df)
- FAILURE
- if (arg2_32 (0.0df, 1.0df, 2.0df, 3.0df, 4.0df, 5.0df) != 2.0df)
- FAILURE
- if (arg3_32 (0.0df, 1.0df, 2.0df, 3.0df, 4.0df, 5.0df) != 3.0df)
- FAILURE
- if (arg4_32 (0.0df, 1.0df, 2.0df, 3.0df, 4.0df, 5.0df) != 4.0df)
- FAILURE
- if (arg5_32 (0.0df, 1.0df, 2.0df, 3.0df, 4.0df, 5.0df) != 5.0df)
- FAILURE
-
- /* _Decimal64 variants. */
- if (arg0_64 (0.0dd, 1.0dd, 2.0dd, 3.0dd, 4.0dd, 5.0dd) != 0.0dd)
- FAILURE
- if (arg1_64 (0.0dd, 1.0dd, 2.0dd, 3.0dd, 4.0dd, 5.0dd) != 1.0dd)
- FAILURE
- if (arg2_64 (0.0dd, 1.0dd, 2.0dd, 3.0dd, 4.0dd, 5.0dd) != 2.0dd)
- FAILURE
- if (arg3_64 (0.0dd, 1.0dd, 2.0dd, 3.0dd, 4.0dd, 5.0dd) != 3.0dd)
- FAILURE
- if (arg4_64 (0.0dd, 1.0dd, 2.0dd, 3.0dd, 4.0dd, 5.0dd) != 4.0dd)
- FAILURE
- if (arg5_64 (0.0dd, 1.0dd, 2.0dd, 3.0dd, 4.0dd, 5.0dd) != 5.0dd)
- FAILURE
-
- /* _Decimal128 variants. */
- if (arg0_128 (0.0dl, 1.0dl, 2.0dl, 3.0dl, 4.0dl, 5.0dl) != 0.0dl)
- FAILURE
- if (arg1_128 (0.0dl, 1.0dl, 2.0dl, 3.0dl, 4.0dl, 5.0dl) != 1.0dl)
- FAILURE
- if (arg2_128 (0.0dl, 1.0dl, 2.0dl, 3.0dl, 4.0dl, 5.0dl) != 2.0dl)
- FAILURE
- if (arg3_128 (0.0dl, 1.0dl, 2.0dl, 3.0dl, 4.0dl, 5.0dl) != 3.0dl)
- FAILURE
- if (arg4_128 (0.0dl, 1.0dl, 2.0dl, 3.0dl, 4.0dl, 5.0dl) != 4.0dl)
- FAILURE
- if (arg5_128 (0.0dl, 1.0dl, 2.0dl, 3.0dl, 4.0dl, 5.0dl) != 5.0dl)
- FAILURE
-
- if (failcnt != 0)
- abort ();
-
- return 0;
-}
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/dfp/fe-convert-2.c ('k') | gcc/gcc/testsuite/gcc.dg/dfp/func-vararg-alternate-d128.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698