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

Unified Diff: gcc/gcc/testsuite/gcc.dg/graphite/block-2.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
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/graphite/block-1.c ('k') | gcc/gcc/testsuite/gcc.dg/graphite/block-4.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/testsuite/gcc.dg/graphite/block-2.c
diff --git a/gcc/gcc/testsuite/gcc.dg/graphite/block-2.c b/gcc/gcc/testsuite/gcc.dg/graphite/block-2.c
deleted file mode 100644
index fc4e889e7915efe8e2344ec48f0185bac6aeb422..0000000000000000000000000000000000000000
--- a/gcc/gcc/testsuite/gcc.dg/graphite/block-2.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/* { dg-options "-O2 -floop-block -fdump-tree-graphite-all" } */
-
-typedef unsigned char UChar;
-typedef int Int32;
-typedef unsigned int UInt32;
-
-void fallbackSort ( UInt32* fmap,
- UInt32* eclass,
- Int32 nblock,
- Int32 verb )
-{
- Int32 ftab[257];
- Int32 ftabCopy[256];
- Int32 H, i, j, k, l, r, cc, cc1;
- Int32 nNotDone;
- Int32 nBhtab;
- UChar* eclass8 = (UChar*)eclass;
-
- if (verb >= 4)
- VPrintf0 ( " bucket sorting ...\n" );
- for (i = 0; i < 257; i++) ftab[i] = 0;
- for (i = 0; i < nblock; i++) ftab[eclass8[i]]++;
- for (i = 0; i < 256; i++) ftabCopy[i] = ftab[i];
- for (i = 1; i < 257; i++) ftab[i] += ftab[i-1];
-
- for (i = 0; i < nblock; i++) {
- j = eclass8[i] + ftab [i];
- }
- AssertH ( j < 256, 1005 );
-}
-/* { dg-final { cleanup-tree-dump "graphite" } } */
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/graphite/block-1.c ('k') | gcc/gcc/testsuite/gcc.dg/graphite/block-4.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698