diff options
Diffstat (limited to 'src/mesa/pipe/cell/spu')
-rw-r--r-- | src/mesa/pipe/cell/spu/main.c | 4 | ||||
-rw-r--r-- | src/mesa/pipe/cell/spu/tri.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/pipe/cell/spu/main.c b/src/mesa/pipe/cell/spu/main.c index f2c6d31d3c..83880bc906 100644 --- a/src/mesa/pipe/cell/spu/main.c +++ b/src/mesa/pipe/cell/spu/main.c @@ -114,7 +114,7 @@ clear_tiles(const struct cell_command_clear_tiles *clear) { uint num_tiles = fb.width_tiles * fb.height_tiles; uint i; - uint tile[TILE_SIZE * TILE_SIZE] ALIGN16; + uint tile[TILE_SIZE * TILE_SIZE] ALIGN16_ATTRIB; for (i = 0; i < TILE_SIZE * TILE_SIZE; i++) tile[i] = clear->value; @@ -161,7 +161,7 @@ triangle(const struct cell_command_triangle *tri) static void main_loop(void) { - struct cell_command cmd ALIGN16; + struct cell_command cmd; int exitFlag = 0; printf("SPU %u: Enter main loop\n", init.id); diff --git a/src/mesa/pipe/cell/spu/tri.c b/src/mesa/pipe/cell/spu/tri.c index 793bf55743..60a62fdcd5 100644 --- a/src/mesa/pipe/cell/spu/tri.c +++ b/src/mesa/pipe/cell/spu/tri.c @@ -66,7 +66,7 @@ static int cliprect_minx, cliprect_maxx, cliprect_miny, cliprect_maxy; -static uint tile[TILE_SIZE][TILE_SIZE] ALIGN16; +static uint tile[TILE_SIZE][TILE_SIZE] ALIGN16_ATTRIB; #endif |