Skip to content
Snippets Groups Projects
Commit a96ebb2c authored by Richard Biener's avatar Richard Biener Committed by Richard Biener
Browse files

tree-optimization/99856 - fix testcase

When making the testcase use aligned accesses I botched up the
copy&paste.  Fixed.

	PR tree-optimization/99856
	* gcc.dg/vect/pr99856.c: Fix copy&paste errors.
parent 0fae1550
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,8 @@ opSourceOver_premul(uint8_t* restrict Rrgba,
const uint8_t* restrict Drgba, int len)
{
Rrgba = __builtin_assume_aligned (Rrgba, __BIGGEST_ALIGNMENT__);
Srgba = __builtin_assume_aligned (Rrgba, __BIGGEST_ALIGNMENT__);
Drgba = __builtin_assume_aligned (Rrgba, __BIGGEST_ALIGNMENT__);
Srgba = __builtin_assume_aligned (Srgba, __BIGGEST_ALIGNMENT__);
Drgba = __builtin_assume_aligned (Drgba, __BIGGEST_ALIGNMENT__);
int i = 0;
for (; i < len*4; i += 4)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment