... and fixed that test case :P ...

This commit is contained in:
Tomas Lindquist Olsen
2008-12-04 16:13:40 +01:00
parent a5616feceb
commit 5ae0f3a934

View File

@@ -3,6 +3,6 @@ void main()
float m[4][4];
float* fp = &m[0][0];
for (int i=0; i<16; i++)
for (int i=0; i<16; i++,fp++)
assert(*fp !<>= 0);
}