Initialize ARM test program variables

This commit is contained in:
Jeffrey Walton 2018-12-01 09:37:23 -05:00
parent 9e5ba86d7b
commit 3b6ef04973
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
3 changed files with 6 additions and 6 deletions

View File

@ -10,7 +10,7 @@
int main(int argc, char* argv[])
{
uint32x4_t x;
uint32x4_t x={0};
x=veorq_u32(x,x);
return 0;
}

View File

@ -3,7 +3,7 @@
int main(int argc, char* argv[])
{
uint32x4_t x;
uint32x4_t x={0};
x=veorq_u32(x,x);
return 0;
}

View File

@ -10,12 +10,12 @@
int main(int argc, char* argv[])
{
uint32x4_t y;
uint32x4_t y = {0};
y=vsha1cq_u32(y,0,y);
y=vsha1mq_u32(y,1,y);
y=vsha1pq_u32(y,2,y);
y = vsha256hq_u32(y, y, y);
y = vsha256h2q_u32(y, y, y);
y = vsha256su1q_u32(y, y, y);
y=vsha256hq_u32(y, y, y);
y=vsha256h2q_u32(y, y, y);
y=vsha256su1q_u32(y, y, y);
return 0;
}