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

Unified Diff: gcc/gcc/testsuite/gcc.dg/dfp/modes.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/modes.c
diff --git a/gcc/gcc/testsuite/gcc.dg/dfp/modes.c b/gcc/gcc/testsuite/gcc.dg/dfp/modes.c
deleted file mode 100644
index ff2382b1c750791d33d1f6b84e9c90740ce978ff..0000000000000000000000000000000000000000
--- a/gcc/gcc/testsuite/gcc.dg/dfp/modes.c
+++ /dev/null
@@ -1,15 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-std=gnu99" } */
-
-typedef float decimal32 __attribute__ ((mode (SD)));
-typedef float decimal64 __attribute__ ((mode (DD)));
-typedef float decimal128 __attribute__ ((mode (TD)));
-
-int ssize[sizeof (decimal32) == 4 ? 1 : -1];
-int dsize[sizeof (decimal64) == 8 ? 1 : -1];
-int tsize[sizeof (decimal128) == 16 ? 1 : -1];
-
-int salign = __alignof (decimal32);
-int dalign = __alignof (decimal64);
-int talign = __alignof (decimal128);
-
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/dfp/keywords-reserved.c ('k') | gcc/gcc/testsuite/gcc.dg/dfp/operator-arith-fold.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698