[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/Olden/bisort/bitonic.c

Bill Wendling isanbard at gmail.com
Tue Feb 24 20:59:09 PST 2009


Anon? Who is this?

-bw

On Feb 24, 2009, at 6:14 PM, anon at cs.uiuc.edu wrote:

>
>
> Changes in directory llvm-test/MultiSource/Benchmarks/Olden/bisort:
>
> bitonic.c updated: 1.5 -> 1.6
> ---
> Log message:
>
>
>
> ---
> Diffs of the changes:  (+1 -1)
>
> bitonic.c |    2 +-
> 1 files changed, 1 insertion(+), 1 deletion(-)
>
>
> Index: llvm-test/MultiSource/Benchmarks/Olden/bisort/bitonic.c
> diff -u llvm-test/MultiSource/Benchmarks/Olden/bisort/bitonic.c:1.5  
> llvm-test/MultiSource/Benchmarks/Olden/bisort/bitonic.c:1.6
> --- llvm-test/MultiSource/Benchmarks/Olden/bisort/bitonic.c:1.5	Mon  
> Oct 25 15:26:46 2004
> +++ llvm-test/MultiSource/Benchmarks/Olden/bisort/bitonic.c	Tue Feb  
> 24 20:13:42 2009
> @@ -27,12 +27,12 @@
> #define NewNode(h,v,procid) LocalNewNode(h,v)
>
> void InOrder(HANDLE *h) {
> +  static unsigned char counter = 0;
>   HANDLE *l, *r;
>   if ((h != NIL)) {
>     l = h->left;
>     r = h->right;
>     InOrder(l);
> -    static unsigned char counter = 0;
>     if (counter++ == 0)   /* reduce IO */
>       printf("%d @ 0x%x\n",h->value, 0);
>     InOrder(r);
>
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits




More information about the llvm-commits mailing list