Commit 195868c1 authored by Art Haas's avatar Art Haas Committed by Richard Henderson

[PATCH] C99 initializers for asm-alpha/include/xor.h

This patch converts the file to C99 initializers. The patch is against
the current BK. The patch is untested as I don't have access to an Alpha
machine.

Art Haas
parent 66b99486
...@@ -822,19 +822,19 @@ xor_alpha_prefetch_5: \n\ ...@@ -822,19 +822,19 @@ xor_alpha_prefetch_5: \n\
"); ");
static struct xor_block_template xor_block_alpha = { static struct xor_block_template xor_block_alpha = {
name: "alpha", .name = "alpha",
do_2: xor_alpha_2, .do_2 = xor_alpha_2,
do_3: xor_alpha_3, .do_3 = xor_alpha_3,
do_4: xor_alpha_4, .do_4 = xor_alpha_4,
do_5: xor_alpha_5, .do_5 = xor_alpha_5,
}; };
static struct xor_block_template xor_block_alpha_prefetch = { static struct xor_block_template xor_block_alpha_prefetch = {
name: "alpha prefetch", .name = "alpha prefetch",
do_2: xor_alpha_prefetch_2, .do_2 = xor_alpha_prefetch_2,
do_3: xor_alpha_prefetch_3, .do_3 = xor_alpha_prefetch_3,
do_4: xor_alpha_prefetch_4, .do_4 = xor_alpha_prefetch_4,
do_5: xor_alpha_prefetch_5, .do_5 = xor_alpha_prefetch_5,
}; };
/* For grins, also test the generic routines. */ /* For grins, also test the generic routines. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment